public void LabelListData_GET()
        {
            // arrange
            MockLabelService.Setup_GetLabels_Returns_LabelReadListResponse_Success();

            // act
            var result = SystemUnderTest.LabelListData(OrganizationOneProjectOneUid, One, Two);

            // assert
            AssertViewAndHeaders(result, new [] { "label_key", "label_translation_count", "description", "is_active" });
            MockLabelService.Verify_GetLabels();
        }