Ejemplo n.º 1
0
        public void getUsernameTest()
        {
            // Setup
            var    account  = new NormalAccount("Will Smith", "Fre$hPrince", DateTime.Now);
            string expected = "Will Smith";

            // Method
            string actual = account.getUsername();

            // Assertion
            Assert.AreEqual(expected, actual);
        }