public void TimeEntry_ChangeDateHourPointed_ShouldChangeTheDateHourPointedFromTimeEntry()
        {
            TimeEntry timeEntry          = _fixtureWrapper.TimeEntryFixture.CreateValid();
            DateTime  newDateHourPointed = DateTime.Now.Date.AddHours(2);

            timeEntry.ChangeDateHourPointed(newDateHourPointed);

            timeEntry.DateHourPointed.Should().Be(newDateHourPointed);
        }