From d02d5430fcc7cd4472f751ee7bac7b2f68d8208e Mon Sep 17 00:00:00 2001 From: tuorjr Date: Mon, 26 Sep 2016 15:55:11 +0000 Subject: [PATCH] Added lauchers for test cases. git-svn-id: https://www.simantics.org/svn/simantics-incubator/reino@1691 e36c2e66-7d30-0410-bdb2-d9e1f5a6d952 --- org.simantics.pythonlink/runAllTests.launch | 48 +++++++++++++++++++ .../runScriptTests.launch | 47 ++++++++++++++++++ .../simantics/pythonlink/test/AllTests.java | 11 +++++ 3 files changed, 106 insertions(+) create mode 100644 org.simantics.pythonlink/runAllTests.launch create mode 100644 org.simantics.pythonlink/runScriptTests.launch create mode 100644 org.simantics.pythonlink/test/org/simantics/pythonlink/test/AllTests.java diff --git a/org.simantics.pythonlink/runAllTests.launch b/org.simantics.pythonlink/runAllTests.launch new file mode 100644 index 0000000..8b34091 --- /dev/null +++ b/org.simantics.pythonlink/runAllTests.launch @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/org.simantics.pythonlink/runScriptTests.launch b/org.simantics.pythonlink/runScriptTests.launch new file mode 100644 index 0000000..b4c34eb --- /dev/null +++ b/org.simantics.pythonlink/runScriptTests.launch @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/org.simantics.pythonlink/test/org/simantics/pythonlink/test/AllTests.java b/org.simantics.pythonlink/test/org/simantics/pythonlink/test/AllTests.java new file mode 100644 index 0000000..3d9bbb2 --- /dev/null +++ b/org.simantics.pythonlink/test/org/simantics/pythonlink/test/AllTests.java @@ -0,0 +1,11 @@ +package org.simantics.pythonlink.test; + +import org.junit.runner.RunWith; +import org.junit.runners.Suite; +import org.junit.runners.Suite.SuiteClasses; + +@RunWith( Suite.class ) +@SuiteClasses( { ScriptTests.class, TestPythonlink.class } ) +public class AllTests { + +} -- 2.45.2