Beispiel #1
0
        public void NullObjectImplementation()
        {
            var student1 = StudentFactory.GetStudent("Ali");
            var student2 = StudentFactory.GetStudent("HAha");

            Assert.AreEqual("Ali", student1.Name);
            Assert.AreEqual("Not Available", student2.Name);
        }