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

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
TestRunner api changes
  • Loading branch information
viniciusam committed May 23, 2017
commit 07275ca52c2ee2d63e35ba067e52565c7846ef7e
5 changes: 4 additions & 1 deletion src/main/java/io/github/utplsql/cli/RunCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,10 @@ public void run() throws Exception {

executorService.submit(() -> {
try (Connection conn = ci.getConnection()){
new TestRunner().run(conn, testPaths, reporterList);
new TestRunner()
.addPathList(testPaths)
.addReporterList(reporterList)
.run(conn);
} catch (SQLException e) {
// TODO
e.printStackTrace();
Expand Down