Esempio n. 1
0
        public void Get_Hotel_Size_Equals_0_And_Beach_Equals_Empty_Return_Null()
        {
            string location = beach.GetBeach(" ");
            string response = beach.GetHotel(0, location);

            Assert.That(response, Is.EqualTo(null));
        }
Esempio n. 2
0
        public void Enter_Shoe_Size_0_Beach_Empty_Return_Hotel_Null()
        {
            string location = beach.GetBeach(" ");
            string response = beach.GetHotel(0, location);

            Assert.That(response, Is.EqualTo(null));
        }