public void FindCategoryWithEmptyNameThrowsArgumentException()
        {
            //Arrange
            var expected = new TestableDiagnosticServicesDefaultCateory();

            //Act
            SPDiagnosticsCategory target = expected.FindCategory(string.Empty);
        }
        public void FindCategoryWithNullNameThrowsArgumentNullException()
        {
            //Arrange
            var expected = new TestableDiagnosticServicesDefaultCateory();

            //Act
            SPDiagnosticsCategory target = expected.FindCategory(null);
        }