]> gerrit.simantics Code Review - simantics/python.git/blobdiff - org.simantics.pythonlink/test/org/simantics/pythonlink/test/ScriptTests.java
Initial commit of Python Integration feature.
[simantics/python.git] / org.simantics.pythonlink / test / org / simantics / pythonlink / test / ScriptTests.java
diff --git a/org.simantics.pythonlink/test/org/simantics/pythonlink/test/ScriptTests.java b/org.simantics.pythonlink/test/org/simantics/pythonlink/test/ScriptTests.java
new file mode 100644 (file)
index 0000000..4c5318a
--- /dev/null
@@ -0,0 +1,16 @@
+package org.simantics.pythonlink.test;
+
+import org.junit.Test;
+
+public class ScriptTests extends ScriptTestBase {
+    
+    public ScriptTests() {
+        super("scripts");
+    }
+
+    @Test public void Arithmetic() throws Exception { test(); }
+    @Test public void Functions() throws Exception { test(); }
+    @Test public void Functions2() throws Exception { test(); }
+    @Test public void Lists() throws Exception { test(); }
+    
+}