示例#1
0
        public void TestWithDeposit()
        {
            QuanLy acc = new QuanLy(200000);

            Assert.IsNotNull(acc);
            Assert.IsInstanceOfType(acc, typeof(QuanLy));
            Assert.AreEqual(100000, acc.Deposit(100000));
        }