We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab014cf commit ffc110cCopy full SHA for ffc110c
src/main/java/io/github/utplsql/api/reporter/CoverageHTMLReporter.java
@@ -8,11 +8,15 @@
8
9
public class CoverageHTMLReporter extends Reporter {
10
11
+ // Could override Reporter.init and call ut_coverage_report_html_helper.get_default_html_assets_path from database,
12
+ // but had permissions issues.
13
+ public static final String DEFAULT_ASSETS_PATH = "https://utplsql.github.io/utPLSQL-coverage-html/assets/";
14
+
15
private String projectName;
16
private String assetsPath;
17
18
public CoverageHTMLReporter() {
-
19
+ this(null, DEFAULT_ASSETS_PATH);
20
}
21
22
public CoverageHTMLReporter(String projectName, String assetsPath) {
0 commit comments