示例#1
0
 def testNotaRetornadaIgual200(self):
     atm = ATM()
     notas = atm.contarNotas(200)
     self.assertListEqual(notas, [100, 100])
示例#2
0
 def testNotaRetornadaIgual80(self):
     atm = ATM()
     notas = atm.contarNotas(80)
     self.assertListEqual(notas, [50, 20, 10])