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

Class BuffyTest

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

Source from the content-addressed store, hash-verified

6import static org.junit.Assert.assertThat;
7
8public class BuffyTest extends AbstractFakerTest {
9 @Test
10 public void testCharacters() {
11 assertThat(faker.buffy().characters(), isStringWithContents());
12 }
13
14 @Test
15 public void testQuotes() {
16 assertThat(faker.buffy().quotes(), isStringWithContents());
17 }
18
19 @Test
20 public void testCelebrities() {
21 assertThat(faker.buffy().celebrities(), isStringWithContents());
22 }
23
24 @Test
25 public void testBigBads() {
26 assertThat(faker.buffy().bigBads(), isStringWithContents());
27 }
28
29 @Test
30 public void testEpisodes() {
31 assertThat(faker.buffy().episodes(), isStringWithContents());
32 }
33}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected