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 dcf4ab3 commit fcba609Copy full SHA for fcba609
sqldev/src/main/java/org/utplsql/sqldev/model/runner/Run.xtend
@@ -37,6 +37,7 @@ class Run extends AbstractModel {
37
String serverOutput
38
LinkedHashMap<String, Test> tests
39
String status
40
+ Long start
41
42
new(String reporterId, String connectionName, List<String> pathList) {
43
this.reporterId = reporterId
@@ -46,6 +47,11 @@ class Run extends AbstractModel {
46
47
this.tests = new LinkedHashMap<String, Test>
48
}
49
50
+ def void setStartTime(String startTime) {
51
+ this.startTime = startTime
52
+ start = System.currentTimeMillis
53
+ }
54
+
55
def getName() {
56
val time = startTime.substring(11,19)
57
val conn = connectionName?.substring(15)
0 commit comments