Пример #1
0
        public async Task Label_GetAllFull_ShouldReturnData()
        {
            var results = await _controller.GetAllFull(DefaultGroup, DefaultMonth, DefaultYear);

            results
            .Should().BeOfType <OkObjectResult>()
            .Which.Value.Should().BeAssignableTo <ICollection <LabelGetFullModel> >()
            .Which.Should().NotBeEmpty();
        }