コード例 #1
0
ファイル: UnitTest1.cs プロジェクト: large-systems/backend
        public void FindRoomsTest()
        {
            List <RoomDetails> roomsFound = hotelsystem.FindRooms(new HotelIdentifier(1), new System.DateTime(2019, 3, 1, 7, 0, 0), new System.DateTime(2019, 3, 1, 7, 0, 0), "luksusrum");

            // DateTime is in the format year, month, day, hour, minute, second
            Assert.Greater(0, roomsFound.Count);
        }
コード例 #2
0
 public void FindRoomsTest()
 {
     // DateTime is in the format year, month, day, hour, minute, second
     Assert.Greater(0, hotelsystem.FindRooms(new System.DateTime(2019, 3, 1, 7, 0, 0), new HotelIdentifier(1), "Luksusrum").Count);
 }