public async Task CanGetScheduledShiftById()
        {
            var shift = await _shiftRepository.GetScheduledShift(1);

            Assert.NotNull(shift);
        }