public void ListAllCampgroundsCuyahogaValley()
        {
            //arrange
            CampgroundSqlDAO dao = new CampgroundSqlDAO(connectionString);

            //act
            IList <Campground> campground = dao.ListAllCampgrounds(3);

            //assert
            Assert.AreEqual(1, campground.Count);
        }
        public void ListAllCampgroundsArches()
        {
            //arrange
            CampgroundSqlDAO dao = new CampgroundSqlDAO(connectionString);

            //act
            IList <Campground> campground = dao.ListAllCampgrounds(2);

            //assert
            Assert.AreEqual(3, campground.Count);
        }