Exemplo n.º 1
0
	def test_is_bissexto_with_4_should_return_true(self):
		bissexto = Bissexto()
		result = bissexto.is_bissexto(4)
		self.assertTrue(result)
Exemplo n.º 2
0
	def test_is_bissexto_with_200_should_return_false(self):
		bissexto = Bissexto()
		result = bissexto.is_bissexto(200)
		self.assertFalse(result)