Skip to content

Commit 09f6bd9

Browse files
modelcheck: JUnit.kt: remove unnecessary public modifiers
1 parent 4fca97b commit 09f6bd9

File tree

1 file changed

+9
-9
lines changed
  • modelcheck/src/main/kotlin/de/itemis/mps/gradle/junit

1 file changed

+9
-9
lines changed

modelcheck/src/main/kotlin/de/itemis/mps/gradle/junit/JUnit.kt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package de.itemis.mps.gradle.junit
22

3-
public data class Skipped(val content: String)
3+
data class Skipped(val content: String)
44

55
/**
66
* 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
77
*/
8-
public data class Error(
8+
data class Error(
99
/**
1010
* The error message. e.g., if a java exception is thrown, the return value of getMessage()
1111
*/
@@ -20,7 +20,7 @@ public data class Error(
2020
/**
2121
* 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
2222
*/
23-
public data class Failure(
23+
data class Failure(
2424
/**
2525
* The message specified in the assert
2626
*/
@@ -32,12 +32,12 @@ public data class Failure(
3232
val content: String? = null
3333
)
3434

35-
public data class SystemOut(val content: String)
35+
data class SystemOut(val content: String)
3636

37-
public data class SystemErr(val content: String)
37+
data class SystemErr(val content: String)
3838

3939

40-
public data class Testcase(
40+
data class Testcase(
4141
/**
4242
* Name of the test method
4343
*/
@@ -55,7 +55,7 @@ public data class Testcase(
5555
val failure: Failure? = null
5656
)
5757

58-
public data class Testsuite(
58+
data class Testsuite(
5959
/**
6060
* Full class name of the test for non-aggregated testsuite documents. Class name without the package for aggregated testsuites documents
6161
*/
@@ -112,6 +112,6 @@ public data class Testsuite(
112112
val systemError: SystemErr = SystemErr("")
113113
)
114114

115-
public data class Property(val name: String, val value: String)
115+
data class Property(val name: String, val value: String)
116116

117-
public data class Testsuites(val testsuites: List<Testsuite>)
117+
data class Testsuites(val testsuites: List<Testsuite>)

0 commit comments

Comments
 (0)