示例#1
0
        public async Task Should_CallCorrectServiceMethodAsync()
        {
            //arrange/act
            await GetController().Get();

            //assert
            MockMovieService.Verify(s => s.TopMoviesAsync(It.IsAny <byte>()), Times.Once);
        }