()
| 56 | } |
| 57 | |
| 58 | @Test |
| 59 | public void twoFacts() { |
| 60 | assertThat( |
| 61 | makeMessage( |
| 62 | ImmutableList.of(), |
| 63 | ImmutableList.of(fact("foo", "bar"), fact("longer name", "other value")))) |
| 64 | .isEqualTo( |
| 65 | TEXT.join( |
| 66 | "foo : bar", // force a line break |
| 67 | "longer name: other value")); |
| 68 | } |
| 69 | |
| 70 | @Test |
| 71 | public void mixingFactsAndNumericFacts() { |
nothing calls this directly
no test coverage detected