public void TestMethodAccount()
        {
            account acc = new account(20000);

            Assert.IsNotNull(acc);
            Assert.IsInstanceOfType(acc, typeof(account));
            Assert.AreEqual(20000, acc.Balance());
        }