From: tuorjr Date: Mon, 26 Sep 2016 15:55:11 +0000 (+0000) Subject: Added lauchers for test cases. X-Git-Tag: v1.31.0~17 X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=commitdiff_plain;h=d02d5430fcc7cd4472f751ee7bac7b2f68d8208e;p=simantics%2Fpython.git Added lauchers for test cases. git-svn-id: https://www.simantics.org/svn/simantics-incubator/reino@1691 e36c2e66-7d30-0410-bdb2-d9e1f5a6d952 --- 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 { + +}