Beispiel #1
0
        public void AwayTest()
        {
            Assert.AreEqual("AWAY", IrcCommand.Away());
            string message  = "Gone to lunch.";
            string expected = "AWAY :Gone to lunch.";

            Assert.AreEqual(expected, IrcCommand.Away(message));
        }