コード例 #1
0
        public void ParkSqlDAL_GetParkByParkCode_Test()
        {
            //Arrange
            IParkDAL parkDAL = new ParkSqlDAL();
            //Act
            Park affectedPark = parkDAL.getParkIdData("ENP");

            //Assert
            Assert.IsNotNull(parkDAL);
            Assert.IsNotNull(affectedPark);
            Assert.AreEqual("Tropical", affectedPark.Climate);
            Assert.AreEqual("Marjory Stoneman Douglas", affectedPark.InspirationalQuoteSource);
        }