Exemplo n.º 1
0
	def test_1_voto(self):
		votos = [('G1', 'C1')]
		self.assertEqual(1, votacao(1, 1, votos))
Exemplo n.º 2
0
	def test_3_votos_2_atendidos_2_caes_2_gatos_ordem_maluca(self):
		votos = [('G1', 'C1'), ('G2', 'C2'), ('C2', 'G2')]
		self.assertEqual(2, votacao(2, 2, votos))
Exemplo n.º 3
0
	def test_0_voto(self):
		votos = []
		self.assertEqual(0, votacao(0, 0, votos))
Exemplo n.º 4
0
	def test_2_votos_diferentes_2_caes_2_gatos(self):
		votos = [('G1', 'C2'), ('C1', 'G1')]
		self.assertEqual(1, votacao(2, 2, votos))
Exemplo n.º 5
0
	def test_3_votos_iguais(self):
		votos = [('G1', 'C1'), ('G1', 'C1'), ('G1', 'C1')]
		self.assertEqual(3, votacao(1, 1, votos))
Exemplo n.º 6
0
 def test_0_voto(self):
     votos = []
     self.assertEqual(0, votacao(0, 0, votos))
Exemplo n.º 7
0
	def test_1_voto_2_caes_2_gatos(self):
		votos = [('G1','C1')]
		self.assertEqual(1, votacao(2, 2, votos))
Exemplo n.º 8
0
 def test_3_votos_2_atendidos_2_caes_2_gatos_ordem_maluca(self):
     votos = [('G1', 'C1'), ('G2', 'C2'), ('C2', 'G2')]
     self.assertEqual(2, votacao(2, 2, votos))
Exemplo n.º 9
0
 def test_3_votos_iguais(self):
     votos = [('G1', 'C1'), ('G1', 'C1'), ('G1', 'C1')]
     self.assertEqual(3, votacao(1, 1, votos))
Exemplo n.º 10
0
 def test_2_votos_diferentes_2_caes_2_gatos(self):
     votos = [('G1', 'C2'), ('C1', 'G1')]
     self.assertEqual(1, votacao(2, 2, votos))
Exemplo n.º 11
0
 def test_1_voto_2_caes_2_gatos(self):
     votos = [('G1', 'C1')]
     self.assertEqual(1, votacao(2, 2, votos))
Exemplo n.º 12
0
 def test_1_voto(self):
     votos = [('G1', 'C1')]
     self.assertEqual(1, votacao(1, 1, votos))