You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modelcheck/src/main/kotlin/de/itemis/mps/gradle/junit/JUnit.kt
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
packagede.itemis.mps.gradle.junit
2
2
3
-
publicdata classSkipped(valcontent:String)
3
+
data classSkipped(valcontent:String)
4
4
5
5
/**
6
6
* Indicates that the test errored. An errored test is one that had an unanticipated problem. e.g., an unchecked throwable; or a problem with the implementation of the test. Contains as a text node relevant data for the error, e.g., a stack trace
7
7
*/
8
-
publicdata classError(
8
+
data classError(
9
9
/**
10
10
* The error message. e.g., if a java exception is thrown, the return value of getMessage()
11
11
*/
@@ -20,7 +20,7 @@ public data class Error(
20
20
/**
21
21
* Indicates that the test failed. A failure is a test which the code has explicitly failed by using the mechanisms for that purpose. e.g., via an assertEquals. Contains as a text node relevant data for the failure, e.g., a stack trace
22
22
*/
23
-
publicdata classFailure(
23
+
data classFailure(
24
24
/**
25
25
* The message specified in the assert
26
26
*/
@@ -32,12 +32,12 @@ public data class Failure(
32
32
valcontent:String? = null
33
33
)
34
34
35
-
publicdata classSystemOut(valcontent:String)
35
+
data classSystemOut(valcontent:String)
36
36
37
-
publicdata classSystemErr(valcontent:String)
37
+
data classSystemErr(valcontent:String)
38
38
39
39
40
-
publicdata classTestcase(
40
+
data classTestcase(
41
41
/**
42
42
* Name of the test method
43
43
*/
@@ -55,7 +55,7 @@ public data class Testcase(
55
55
valfailure:Failure? = null
56
56
)
57
57
58
-
publicdata classTestsuite(
58
+
data classTestsuite(
59
59
/**
60
60
* Full class name of the test for non-aggregated testsuite documents. Class name without the package for aggregated testsuites documents
0 commit comments