Clover coverage report - Maven Clover report
Coverage timestamp: Sun Mar 18 2007 17:42:32 CET
file stats: LOC: 13   Methods: 2
NCLOC: 10   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
SectionFactory.java - 100% 100% 100%
coverage
 1    package com.agical.rmock.core.expectation.section;
 2   
 3    import com.agical.rmock.core.Section;
 4   
 5    public class SectionFactory {
 6  28 public Section unordered( String description ) {
 7  28 return new AnyOrderSection( description );
 8    }
 9   
 10  60 public Section ordered(String description) {
 11  60 return new OrderedSection( description );
 12    }
 13    }