about summary refs log blame commit diff
path: root/IRCStates/Tests/Motd.cs
blob: 2d75982b034a10a06d445cb87473369d5be94b19 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                    
                
                                                   
 
                         



                     



                                            



                                                                 



                                                                                                                      

     
using System.Collections.Generic;
using IRCTokens;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace IRCStates.Tests
{
    [TestClass]
    public class Motd
    {
        [TestMethod]
        public void MessageOfTheDay()
        {
            var server = new Server("test");
            server.Parse(new Line("001 nickname"));
            server.Parse(new Line("375 * :start of motd"));
            server.Parse(new Line("372 * :first line of motd"));
            server.Parse(new Line("372 * :second line of motd"));

            CollectionAssert.AreEqual(new List<string> {"start of motd", "first line of motd", "second line of motd"},
                server.Motd);
        }
    }
}