| 6 | import static org.junit.Assert.assertThat; |
| 7 | |
| 8 | public class BoolTest extends AbstractFakerTest { |
| 9 | |
| 10 | @Test |
| 11 | public void testBool() { |
| 12 | for (int i = 0; i < 100; i++) { |
| 13 | assertThat(faker.bool().bool(), isOneOf(true, false)); |
| 14 | } |
| 15 | } |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected