Exemple #1
0
	def testWithdrawalTransaction(self):
		account = BankAccount(1)
		account.balance = 10
		account.withdraw(5)
		self.assertEqual(len(account.transactions),1)
Exemple #2
0
	def testWithdrawalTransactionType(self):
		account = BankAccount(1)
		account.balance = 10
		account.withdraw(5)
		self.assertIsInstance(account.transactions[0],Transaction)
Exemple #3
0
	def testSmallWithdraw(self):
		account = BankAccount(1)
		account.balance = 10
		account.withdraw(0.001)
		self.assertEqual(account.balance,9.999)
Exemple #4
0
	def testGetBalanceAccuracy(self):
		account = BankAccount(1)
		account.balance = 10
		self.assertEqual(account.getBalance(),10)
Exemple #5
0
	def testDecimalWithdraw(self):
		account = BankAccount(1)
		account.balance = 10
		account.withdraw(0.50)
		self.assertEqual(account.balance,9.50)
Exemple #6
0
	def testOverdraft(self):
		account = BankAccount(1)
		account.balance = 10
		self.assertRaises(Exception, account.withdraw,11)
Exemple #7
0
	def testIntegerWithdraw(self):
		account = BankAccount(1)
		account.balance = 10
		account.withdraw(5)
		self.assertEqual(account.balance,5)
Exemple #8
0
	def testNegativeWithdraw(self):
		account = BankAccount(1)
		account.balance = 10
		self.assertRaises(Exception, account.withdraw,-5)
Exemple #9
0
	def testSmallDeposit(self):
		account = BankAccount(1)
		account.balance = 10
		account.deposit(0.001)
		self.assertEqual(account.balance,10.001)
Exemple #10
0
	def testLargeDeposit(self):
		account = BankAccount(1)
		account.balance = 10
		account.deposit(2147483650)
		self.assertEqual(account.balance,2147483660)
Exemple #11
0
	def testDecimalDeposit(self):
		account = BankAccount(1)
		account.balance = 10
		account.deposit(0.50)
		self.assertEqual(account.balance,10.50)
Exemple #12
0
	def testNegativeDeposit(self):
		account = BankAccount(1)
		account.balance = 10
		self.assertRaises(Exception, account.deposit,-10)
Exemple #13
0
	def testIntegerDeposit(self):
		account = BankAccount(1)
		account.balance = 10
		account.deposit(10)
		self.assertEqual(account.balance,20)