예제 #1
0
        public async Task FlagPhotosForReprocessingTest()
        {
            _photoData.Setup(m => m.FlagPhotosForReprocessing());

            await _photoService.FlagPhotosForReprocessing();

            _photoData.Verify(m => m.FlagPhotosForReprocessing(), Times.Once);
        }