예제 #1
0
 @Test
 public void testFizzBuzz() throws Exception {
   assertEquals("FizzBuzz !", fb.answer(15));
 }
예제 #2
0
 @Test
 public void testNotFizzNorBuzz() throws Exception {
   assertEquals("7 !", fb.answer(7));
 }
예제 #3
0
 @Test
 public void testBuzz() throws Exception {
   assertEquals("Buzz !", fb.answer(5));
 }