MCPcopy Create free account
hub / github.com/DiUS/java-faker / BoolTest

Class BoolTest

src/test/java/com/github/javafaker/BoolTest.java:8–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import static org.junit.Assert.assertThat;
7
8public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected