def testNotaRetornadaIgual200(self): atm = ATM() notas = atm.contarNotas(200) self.assertListEqual(notas, [100, 100])
def testNotaRetornadaIgual80(self): atm = ATM() notas = atm.contarNotas(80) self.assertListEqual(notas, [50, 20, 10])