예제 #1
0
        public async Task Ok_Success()
        {
            var service = new TeamsService(null, null, null, _repository.Object, null, null, _mapper);
            await service.BulkUpsertTeamStats(Year, Season, MockedStats());

            _repository.Verify(x => x.BatchUpsertAsync(It.IsAny <IEnumerable <TeamSeasonStats> >()), Times.Once);
        }
예제 #2
0
        public void RepositoryError_ThrowException()
        {
            _repository.Setup(x => x.BatchUpsertAsync(It.IsAny <IEnumerable <TeamSeasonStats> >())).ThrowsAsync(new DataException());

            var service = new TeamsService(null, null, null, _repository.Object, null, null, _mapper);

            Assert.ThrowsAsync <DataException>(async() => await service.BulkUpsertTeamStats(Year, Season, MockedStats()));

            _repository.Verify(x => x.BatchUpsertAsync(It.IsAny <IEnumerable <TeamSeasonStats> >()), Times.Once);
        }