public void ViewCampgroundsTest()
        {
            //arrange
            CampgroundSqlDAO dao = new CampgroundSqlDAO(connectionString);
            //act
            IList <Campground> listOfCampgrounds = dao.ViewCampgrounds(1);

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