(final String out)
| 58 | } |
| 59 | |
| 60 | public Fluent returns(final String out) |
| 61 | throws ParseException { |
| 62 | return returns(s -> { |
| 63 | assertThat(s, is(out)); |
| 64 | return null; |
| 65 | }); |
| 66 | } |
| 67 | |
| 68 | public Fluent returnsUnordered(String... lines) throws ParseException { |
| 69 | final List<String> expectedLines = |
no test coverage detected