public void Create_ShouldCreateNewCommentCorrectly()
        {
            int    hotelId  = 1;
            string username = "******";

            this.dbContext.Hotels.Add(new Hotel {
                Id = hotelId
            });
            this.dbContext.Users.Add(new MbUser {
                UserName = username
            });
            this.dbContext.SaveChanges();

            string content = "testContent";

            this.hotelCommentsService.Create(hotelId, content, username);
            HotelComment result = this.dbContext.HotelComments.First();

            result.ShouldSatisfyAllConditions
            (
                () => result.HotelId.ShouldBe(hotelId),
                () => result.Content.ShouldBe(content),
                () => result.User.UserName.ShouldBe(username)
            );
        }