Exemplo n.º 1
0
 def test_fizzbuzz5(self):
     actual = fbm.fizzbuzz(5)
     self.assertEqual("Buzz", actual)
Exemplo n.º 2
0
 def test_fizzbuzzA(self):
     actual = fbm.fizzbuzz("a")
     self.assertEqual("a", actual)
Exemplo n.º 3
0
 def test_fizzbuzz3(self):
     actual = fbm.fizzbuzz(3)
     self.assertEqual("Fizz", actual)
Exemplo n.º 4
0
 def test_fizzbuzz8(self):
     actual = fbm.fizzbuzz(8)
     self.assertEqual("8", actual)
Exemplo n.º 5
0
 def test_fizzbuzz15(self):
     actual = fbm.fizzbuzz(15)
     self.assertEqual("FizzBuzz", actual)
Exemplo n.º 6
0
 def test_fizzbuzz4(self):
     actual = fbm.fizzbuzz(4)
     self.assertEqual("4", actual)
Exemplo n.º 7
0
 def test_fizzbuzz10(self):
     actual = fbm.fizzbuzz(10)
     self.assertEqual("Buzz", actual)
Exemplo n.º 8
0
 def test_fizzbuzz3(self):
     actual = fbm.fizzbuzz(3)
     self.assertEqual("Fizz", actual)
Exemplo n.º 9
0
 def test_fizzbuzz5(self):
     actual = fbm.fizzbuzz(5)
     self.assertEqual("Buzz", actual)
Exemplo n.º 10
0
 def test_fizzbuzzA(self):
     actual = fbm.fizzbuzz("a")
     self.assertEqual("a", actual)
Exemplo n.º 11
0
 def test_fizzbuzz15(self):
     actual = fbm.fizzbuzz(15)
     self.assertEqual("FizzBuzz", actual)
Exemplo n.º 12
0
 def test_fizzbuzz8(self):
     actual = fbm.fizzbuzz(8)
     self.assertEqual("8", actual)
Exemplo n.º 13
0
 def test_fizzbuzz10(self):
     actual = fbm.fizzbuzz(10)
     self.assertEqual("Buzz", actual)
Exemplo n.º 14
0
 def test_fizzbuzz4(self):
     actual = fbm.fizzbuzz(4)
     self.assertEqual("4", actual)