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

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
0434e17
`ut_output_buffer` is now fully abstracted from caller and caller can…
jgebal Jul 14, 2017
79b3702
Merge branch 'develop' into feature/reporters_object_model_fix
pesse Feb 12, 2018
a9031f4
Fixed some merge issues
pesse Feb 12, 2018
19ac972
We should keep installing ut_message_id_seq I guess...
pesse Feb 13, 2018
43b8754
Fixed output buffer and related test.
jgebal Feb 14, 2018
7fde523
Version number to 3 instead of X.X.X.X
pesse Feb 14, 2018
b8dc2a6
Output-Buffer no longer deletes contents during init
pesse Feb 21, 2018
8fefdcf
Added ut_output_reporter_base to synonyms and grants
pesse Feb 22, 2018
83e4b0b
Revert "Added ut_output_reporter_base to synonyms and grants"
pesse Feb 27, 2018
b4ece73
Added new member-function has_output to easily check
pesse Feb 27, 2018
94b7ea1
Merge remote-tracking branch 'upstream/develop' into feature/reporter…
pesse Feb 27, 2018
d792fec
Revert "Added new member-function has_output to easily check"
pesse Feb 28, 2018
202e697
Reapply "Added ut_output_reporter_base to synonyms and grants""
pesse Feb 28, 2018
bfde057
Add function to check whether a given name is a valid output reporter
pesse Feb 28, 2018
92f7b4c
Replace is_output_reporter by get_reporters_list
pesse Mar 4, 2018
5272342
Added description to all reporters
pesse Mar 5, 2018
7b34109
Unit-Test for get_reporters_list
pesse Mar 5, 2018
aae83f2
Fix get_reporters_list unit-test
pesse Mar 5, 2018
014981c
Merge remote-tracking branch 'upstream/develop' into feature/reporter…
pesse Mar 5, 2018
4488415
We have a Cobertura-Reporter now, too
pesse Mar 5, 2018
762727b
Improved reporter-description according to jgebal's suggestions
pesse Mar 6, 2018
7e428a1
Bump version to 3.1.0
pesse Mar 6, 2018
a466609
Merge remote-tracking branch 'upstream/develop' into feature/reporter…
pesse Mar 7, 2018
c0df23d
Added Cobertura Description
lwasylow Mar 7, 2018
cdacf29
Added Cobertura Description
lwasylow Mar 7, 2018
9504d1b
Merge remote-tracking branch 'upstream/develop' into feature/reporter…
pesse Mar 7, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Improved reporter-description according to jgebal's suggestions
  • Loading branch information
pesse committed Mar 6, 2018
commit 762727be44bc85b988057f27653f5d949cde60d0
3 changes: 2 additions & 1 deletion source/reporters/ut_coverage_sonar_reporter.tpb
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ create or replace type body ut_coverage_sonar_reporter is
overriding member function get_description return varchar2 as
begin
return 'Generates a JSON coverage report providing information on code coverage with line numbers.' || chr(10) ||
'Designed for [SonarQube](https://about.sonarqube.com/) to report coverage.';
'Designed for [SonarQube](https://about.sonarqube.com/) to report coverage.' || chr(10) ||
'JSON format returned conforms with the Sonar specification: https://docs.sonarqube.org/display/SONAR/Generic+Test+Data';
end;

end;
Expand Down
3 changes: 2 additions & 1 deletion source/reporters/ut_coveralls_reporter.tpb
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ create or replace type body ut_coveralls_reporter is
overriding member function get_description return varchar2 as
begin
return 'Generates a JSON coverage report providing information on code coverage with line numbers.' || chr(10) ||
'Designed for [Coveralls](https://coveralls.io/).';
'Designed for [Coveralls](https://coveralls.io/).' || chr(10) ||
'JSON format conforms with specification: https://docs.coveralls.io/api-introduction';
end;

end;
Expand Down
3 changes: 2 additions & 1 deletion source/reporters/ut_sonar_test_reporter.tpb
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ create or replace type body ut_sonar_test_reporter is
overriding member function get_description return varchar2 as
begin
return 'Generates a JSON report providing detailed information on test execution.' || chr(10) ||
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would add line:
JSON format returned conforms with the Sonar specification: https://docs.sonarqube.org/display/SONAR/Generic+Test+Data

'Designed for [SonarQube](https://about.sonarqube.com/) to report test execution.';
'Designed for [SonarQube](https://about.sonarqube.com/) to report test execution.' || chr(10) ||
'JSON format returned conforms with the Sonar specification: https://docs.sonarqube.org/display/SONAR/Generic+Test+Data';
end;

end;
Expand Down
3 changes: 2 additions & 1 deletion source/reporters/ut_teamcity_reporter.tpb
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ create or replace type body ut_teamcity_reporter is

overriding member function get_description return varchar2 as
begin
return 'For reporting live progress of test execution with Teamcity CI.';
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) ||
'https://confluence.jetbrains.com/display/TCD9/Build+Script+Interaction+with+TeamCity';
end;

end;
Expand Down
2 changes: 1 addition & 1 deletion source/reporters/ut_xunit_reporter.tpb
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ create or replace type body ut_xunit_reporter is

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

end;
Expand Down