You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/userguide/reporters.md
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,6 +95,32 @@ Providing invalid paths or paths to non-existing files will result in failure wh
95
95
96
96
For details on how to invoke reporter with paths, see the **Coverage reporters** section.
97
97
98
+
# 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.
108
+
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.
0 commit comments