| 6 | import static org.junit.Assert.assertThat; |
| 7 | |
| 8 | public 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected