def test_maior_numero_quebra(self): self.assertEquals(estatisticas.maior_numero([-1,-2,-3,-20]),-1)
def test_maior_numero_quebra2(self): self.assertEquals(estatisticas.maior_numero([]),0)
def test_maior_numero(self): self.assertEquals(estatisticas.maior_numero([1,2,4,7,10,-10]),10)