]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/UnimplementedTests.java
(refs #7307) Added features field to SCL module header
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / UnimplementedTests.java
1 package org.simantics.scl.compiler.tests;
2
3 import org.junit.Test;
4
5 public class UnimplementedTests extends TestBase {
6     
7     public UnimplementedTests() { super("scl"); }
8
9     @Test public void BigInstances() { test(); }
10     @Test public void BlankExpression() { test(); }
11     @Test public void ClashingValueDefinition() { test(); }
12     @Test public void FunctionalDependencies1() { test(); }
13     @Test public void FunctionalDependencies2() { test(); }  
14     @Test public void InlineLoop() { test(); }
15     @Test public void InstanceTypeVariables() { test(); }
16     @Test public void Macros3() { test(); }
17     @Test public void MissingTypeParameter() { test(); }
18     @Test(timeout=100L) public void RecursiveValues() { test(); }
19     
20     @Test public void Set1() { test(); }
21     @Test public void Signals() { test(); }
22     @Test public void StackTrace() { test(); }
23     @Test public void Timing() { test(); }
24     
25 }
26