Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/org.eclipse.etrice.runtime.java/src/org/eclipse')
-rw-r--r--runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/etunit/EtUnit.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/etunit/EtUnit.java b/runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/etunit/EtUnit.java
index b11d8fba2..5614eff19 100644
--- a/runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/etunit/EtUnit.java
+++ b/runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/etunit/EtUnit.java
@@ -130,6 +130,17 @@ public class EtUnit {
}
}
}
+
+ public static void etUnit_skipTestCase(int id, String msg) {
+ if (out!=null) {
+ try {
+ out.write("tc skip "+id+": "+msg+"\n");
+ out.flush();
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+ }
+ }
public static int etUnit_openAll(String testResultPath, String testFileName, String testSuiteName, String testCaseName){
etUnit_open(testResultPath, testFileName);

Back to the top