|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| SectionFactory.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 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 | } |
|
||||||||||