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