public async Task GetLabels() { PagedList <LabelDto> LabelList = await _labelRepository.GetByUser(paginationParameters, 1); int count = LabelList.Count; Assert.IsNotNull(LabelList); Assert.IsTrue(count >= 1); }