Exemplo n.º 1
0
        public void GetMonthsTest()
        {
            CampgroundSqlDAL testMonth = new CampgroundSqlDAL(connectionString);

            Assert.AreEqual("January", testMonth.GetMonths("1"));
            Assert.AreEqual("March", testMonth.GetMonths("3"));
            Assert.AreEqual("September", testMonth.GetMonths("9"));
        }