Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 762727b

Browse files
committed
Improved reporter-description according to jgebal's suggestions
1 parent 4488415 commit 762727b

5 files changed

Lines changed: 9 additions & 5 deletions

File tree

source/reporters/ut_coverage_sonar_reporter.tpb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ create or replace type body ut_coverage_sonar_reporter is
9191
overriding member function get_description return varchar2 as
9292
begin
9393
return 'Generates a JSON coverage report providing information on code coverage with line numbers.' || chr(10) ||
94-
'Designed for [SonarQube](https://about.sonarqube.com/) to report coverage.';
94+
'Designed for [SonarQube](https://about.sonarqube.com/) to report coverage.' || chr(10) ||
95+
'JSON format returned conforms with the Sonar specification: https://docs.sonarqube.org/display/SONAR/Generic+Test+Data';
9596
end;
9697

9798
end;

source/reporters/ut_coveralls_reporter.tpb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ create or replace type body ut_coveralls_reporter is
102102
overriding member function get_description return varchar2 as
103103
begin
104104
return 'Generates a JSON coverage report providing information on code coverage with line numbers.' || chr(10) ||
105-
'Designed for [Coveralls](https://coveralls.io/).';
105+
'Designed for [Coveralls](https://coveralls.io/).' || chr(10) ||
106+
'JSON format conforms with specification: https://docs.coveralls.io/api-introduction';
106107
end;
107108

108109
end;

source/reporters/ut_sonar_test_reporter.tpb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ create or replace type body ut_sonar_test_reporter is
100100
overriding member function get_description return varchar2 as
101101
begin
102102
return 'Generates a JSON report providing detailed information on test execution.' || chr(10) ||
103-
'Designed for [SonarQube](https://about.sonarqube.com/) to report test execution.';
103+
'Designed for [SonarQube](https://about.sonarqube.com/) to report test execution.' || chr(10) ||
104+
'JSON format returned conforms with the Sonar specification: https://docs.sonarqube.org/display/SONAR/Generic+Test+Data';
104105
end;
105106

106107
end;

source/reporters/ut_teamcity_reporter.tpb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ create or replace type body ut_teamcity_reporter is
115115

116116
overriding member function get_description return varchar2 as
117117
begin
118-
return 'For reporting live progress of test execution with Teamcity CI.';
118+
return 'Provides the TeamCity (a CI server by jetbrains) reporting-format that allows tracking of progress of a CI step/task as it executes.' || chr(10) ||
119+
'https://confluence.jetbrains.com/display/TCD9/Build+Script+Interaction+with+TeamCity';
119120
end;
120121

121122
end;

source/reporters/ut_xunit_reporter.tpb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ create or replace type body ut_xunit_reporter is
131131

132132
overriding member function get_description return varchar2 as
133133
begin
134-
return 'Used for reporting test results with CI servers like Jenkins/Hudson/Teamcity.';
134+
return 'Provides outcomes in a format conforming with JUnit 4 and above as defined in: https://gist.github.com/kuzuha/232902acab1344d6b578';
135135
end;
136136

137137
end;

0 commit comments

Comments
 (0)