コード例 #1
0
ファイル: tests.py プロジェクト: andrebaptista/eventex
 def test_maior_numero_quebra(self):
     self.assertEquals(estatisticas.maior_numero([-1,-2,-3,-20]),-1)
コード例 #2
0
ファイル: tests.py プロジェクト: andrebaptista/eventex
 def test_maior_numero_quebra2(self):
     self.assertEquals(estatisticas.maior_numero([]),0)
コード例 #3
0
ファイル: tests.py プロジェクト: andrebaptista/eventex
 def test_maior_numero(self):
     self.assertEquals(estatisticas.maior_numero([1,2,4,7,10,-10]),10)