Skip to content

Commit 07275ca

Browse files
committed
TestRunner api changes
1 parent 8a9b66f commit 07275ca

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/java/io/github/utplsql/cli/RunCommand.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,10 @@ public void run() throws Exception {
106106

107107
executorService.submit(() -> {
108108
try (Connection conn = ci.getConnection()){
109-
new TestRunner().run(conn, testPaths, reporterList);
109+
new TestRunner()
110+
.addPathList(testPaths)
111+
.addReporterList(reporterList)
112+
.run(conn);
110113
} catch (SQLException e) {
111114
// TODO
112115
e.printStackTrace();

0 commit comments

Comments
 (0)