Пример #1
0
class TestBankAccount(unittest.TestCase):

    def setUp(self):
        self.acc = BankAccount("Sasho", 100, "dollars")
        self.acc2 = BankAccount("Misho", 200, "dollars")

    def test_init(self):
        self.assertEqual(self.acc.get_name(), "Sasho")
        self.assertEqual(self.acc.get_balance(), 100)
        self.assertEqual(self.acc.get_currency(), "dollars")

    def test_deposits(self):
        self.acc.deposit(200)
        self.assertEqual(self.acc.get_balance(), 300)

    def test_withdraw(self):
        self.acc.withdraw(100)
        self.assertEqual(self.acc.get_balance(), 0)

    def test_transfer(self):
        self.acc.transfer_to(self.acc2, 100)
        self.assertEqual(self.acc2.get_balance(), 300)

    def test_history(self):
        arr2 = self.acc.history(self.acc2, 50)
        arr = ["Account was created", "Balance : "+str(self.acc.get_balance()), "Sasho transfered 50 dollars to Misho", "Balance : 100"]
        self.assertEqual(arr, arr2)
Пример #2
0
class BankAccountWindow(object):
    def __init__(self, master):
        self._master = master
        self._master.title("BankAccount")
        self._deposit_account_name = Entry(master, text='amount of money')
        self._deposit_account_name.pack()
        self._deposit_account_name.place(bordermode=OUTSIDE,
                                         height=20,
                                         width=200,
                                         relx=0.035,
                                         rely=0.05)
        self._deposit_button = Button(master,
                                      text='deposit money to your account',
                                      command=self.deposit)
        self._deposit_button.pack()
        self._deposit_button.place(bordermode=OUTSIDE,
                                   height=20,
                                   width=200,
                                   relx=0.035,
                                   rely=0.115)
        self._text_box = Text(master)
        self._text_box.pack()
        self._text_box.place(bordermode=OUTSIDE,
                             height=20,
                             width=200,
                             relx=0.035,
                             rely=0.185)

        self._withdraw_account_name = Entry(master, text='amount of money2')
        self._withdraw_account_name.pack()
        self._withdraw_account_name.place(bordermode=OUTSIDE,
                                          height=20,
                                          width=200,
                                          relx=0.365,
                                          rely=0.05)
        self._withdraw_button = Button(master,
                                       text='withdraw money from your account',
                                       command=self.withdraw)
        self._withdraw_button.pack()
        self._withdraw_button.place(bordermode=OUTSIDE,
                                    height=20,
                                    width=200,
                                    relx=0.365,
                                    rely=0.115)
        self._text_box2 = Text(master)
        self._text_box2.pack()
        self._text_box2.place(bordermode=OUTSIDE,
                              height=20,
                              width=200,
                              relx=0.365,
                              rely=0.185)

        self._get_name_button = Button(master,
                                       text='click here to see your name',
                                       command=self.get_name)
        self._get_name_button.pack()
        self._get_name_button.place(bordermode=OUTSIDE,
                                    height=20,
                                    width=200,
                                    relx=0.695,
                                    rely=0.05)
        self._text_box3 = Text(master)
        self._text_box3.pack()
        self._text_box3.place(bordermode=OUTSIDE,
                              height=20,
                              width=200,
                              relx=0.695,
                              rely=0.115)

        self._get_balance_button = Button(
            master,
            text='click here to see your balance',
            command=self.get_balance)
        self._get_balance_button.pack()
        self._get_balance_button.place(bordermode=OUTSIDE,
                                       height=20,
                                       width=200,
                                       relx=0.1925,
                                       rely=0.325)
        self._text_box4 = Text(master)
        self._text_box4.pack()
        self._text_box4.place(bordermode=OUTSIDE,
                              height=20,
                              width=200,
                              relx=0.1925,
                              rely=0.397)

        self._get_number_button = Button(master,
                                         text='click here to see your number')
        self._get_number_button.pack()
        self._get_number_button.place(bordermode=OUTSIDE,
                                      height=20,
                                      width=200,
                                      relx=0.53,
                                      rely=0.325)
        self._text_box5 = Text(master)
        self._text_box5.pack()
        self._text_box5.place(bordermode=OUTSIDE,
                              height=20,
                              width=200,
                              relx=0.53,
                              rely=0.397)

        self._new_account = BankAccount("yoav")

    def deposit(self):
        self._bank_account = self._new_account.deposit(
            int(self._deposit_account_name.get()))
        self._text_box.insert(END,
                              "your deposit is %d \n" % self._bank_account)

    def withdraw(self):
        self._bank_account = self._new_account.withdraw(
            int(self._withdraw_account_name.get()))
        self._text_box2.insert(END,
                               "your deposit is %d \n" % self._bank_account)

    def get_name(self):
        self._bank_account = self._new_account.get_name()
        self._text_box3.insert(END, "your name is %s \n" % self._bank_account)

    def get_balance(self):
        self._bank_account = self._new_account.get_balance()
        self._text_box4.insert(END,
                               "your balance is %d \n" % self._bank_account)