Exemplo n.º 1
0
        public async Task GetEffectSubCategories()
        {
            var expectedEffectSubCategories = new List <EffectType>();

            _effectRepository.GetCategoriesAsync()
            .Returns(expectedEffectSubCategories);

            var effectSubCategories = await _effectService.GetEffectSubCategoriesAsync();

            effectSubCategories.Should().BeSameAs(expectedEffectSubCategories);
        }