public async Task Label_GetAll_ShouldReturnData() { var results = await _controller.GetAll(DefaultGroup); results .Should().BeOfType <OkObjectResult>() .Which.Value.Should().BeAssignableTo <ICollection <LabelManageModel> >() .Which.Should().NotBeEmpty(); }