Beispiel #1
0
        public void TopicTest()
        {
            const string channel = "#test";

            Assert.AreEqual("TOPIC #test :another topic", IrcCommand.Topic(channel, "another topic"));
            Assert.AreEqual("TOPIC #test :", IrcCommand.ClearTopic(channel));
            Assert.AreEqual("TOPIC #test", IrcCommand.GetTopic(channel));
        }