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

Skip to content

Commit 2a8da3d

Browse files
committed
Updated documentation.
Fixed missing blank line
1 parent 2a078f8 commit 2a8da3d

2 files changed

Lines changed: 5 additions & 13 deletions

File tree

docs/userguide/reporters.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -96,19 +96,11 @@ Providing invalid paths or paths to non-existing files will result in failure wh
9696
For details on how to invoke reporter with paths, see the **Coverage reporters** section.
9797

9898
# TFS / VSTS Reporter
99-
If you are using [TFS](https://www.visualstudio.com/tfs/) or [VSTS](https://www.visualstudio.com/team-services/) to do static code analysis for you PLSQL projects and run builds, your code analysis can benefit from code coverage and test results.
100-
utPLSQL provides two reporters to for TFS / VSTS:
101-
- `ut_tfs_junit_reporter` - provides an XML output of each test executed per each project test file (package)
102-
- `ut_coverage_cobertura_reporter` - provides XML output of code coverage per each project source file
103-
104-
`ut_tfs_junit_reporter` needs to be called with a list of paths to test files (packages).
105-
The paths to files can be relative to the project root directory (recommended) or be absolute.
106-
`ut_coverage_cobertura_reporter` needs to be called with a list of paths to source files for your project.
107-
The paths to files can be relative to the project root directory (recommended) or be absolute.
99+
If you are using [TFS](https://www.visualstudio.com/tfs/) or [VSTS](https://www.visualstudio.com/team-services/) to do static code analysis for you PLSQL projects and run builds, your code analysis can benefit from code coverage and test results. TFS reporter is designed specifically to [work with Microsoft Team Fundation Server](https://docs.microsoft.com/en-us/vsts/build-release/tasks/test/publish-test-results?view=vsts) report format which is very old version of [JUnit](https://github.com/windyroad/JUnit-Schema/blob/master/JUnit.xsd).
100+
Main diffrence between standard JUnit is that <testsuite> elements cannot be nested and attribute skipped is not present.
108101

109-
Providing invalid paths or paths to non-existing files will result in failure when publishing test results/coverage results to sonar server.
110-
111-
For details on how to invoke reporter with paths, see the **Coverage reporters** section.
102+
utPLSQL provides test reporter to for TFS / VSTS server:
103+
- `ut_tfs_junit_reporter` - provides an XML output of each test executed per each project test file (package)
112104

113105
Example of test report from TFS CI server.
114106

source/reporters/ut_tfs_junit_reporter.tps

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ create or replace type ut_tfs_junit_reporter under ut_output_reporter_base(
3131
overriding member function get_description return varchar2
3232
)
3333
not final
34-
/
34+
/

0 commit comments

Comments
 (0)