Skip to content

Commit 6c02223

Browse files
committed
Some tracer bullets... can't reproduce the NPE locally.
1 parent 7ea7a84 commit 6c02223

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/main/java/org/utplsql/api/reporter/CoverageHTMLReporter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ public static void writeReportAssetsTo(Path targetDirectory) throws RuntimeExcep
9696
try {
9797
Files.createDirectories(targetDirectory);
9898

99+
System.out.println("Getting list of children");
99100
List<Path> paths = ResourceUtil.getListOfChildren(Paths.get("CoverageHTMLReporter"), true);
100101

101102
paths.forEach((ThrowingConsumer<Path>) p -> copyFileFromClasspath(p, targetDirectory, 1) );

src/test/java/org/utplsql/api/reporter/CoverageHTMLReporterAssetTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ private void testFileExists(Path filePath) {
2424
public void writeReporterAssetsTo() throws RuntimeException {
2525
Path targetPath = Paths.get(TEST_FOLDER);
2626

27+
System.out.println("targetPath: " + targetPath.toString());
2728
// Act
2829
CoverageHTMLReporter.writeReportAssetsTo(targetPath);
2930

0 commit comments

Comments
 (0)