]> gerrit.simantics Code Review - simantics/python.git/blob - org.simantics.pythonlink/test/org/simantics/pythonlink/test/ScriptTests.java
4c5318a87d9f21b4f721ee20adb3f4eddb692070
[simantics/python.git] / org.simantics.pythonlink / test / org / simantics / pythonlink / test / ScriptTests.java
1 package org.simantics.pythonlink.test;
2
3 import org.junit.Test;
4
5 public class ScriptTests extends ScriptTestBase {
6     
7     public ScriptTests() {
8         super("scripts");
9     }
10
11     @Test public void Arithmetic() throws Exception { test(); }
12     @Test public void Functions() throws Exception { test(); }
13     @Test public void Functions2() throws Exception { test(); }
14     @Test public void Lists() throws Exception { test(); }
15     
16 }