Beispiel #1
0
        public void TestPlayerIsIdentifiable()
        {
            Player John = new Player("John", "Random Player");

            Assert.AreEqual(true, John.AreYou("me"), "Test Player is Identifiable");
            Assert.AreEqual(true, John.AreYou("inventory"), "Test Player is Identifiable");
        }