1 package org.simantics.scl.compiler.tests;
4 import org.simantics.scl.compiler.top.ValueNotFound;
6 public class RegressionTestsWithoutPrelude extends TestBase {
8 public RegressionTestsWithoutPrelude() { super("scl"); }
10 @Test public void AmbiguousType() { test(); }
11 @Test public void ApplicationOfNunfunction() { test(); }
12 @Test public void Arity1() { test(); }
13 @Test public void AsPattern() { test(); }
14 @Test public void BooleanId() { test(); }
15 @Test public void ClashingClass() { test(); }
16 @Test public void ClashingData() { test(); }
17 @Test public void ClashingInstance() { test(); }
18 @Test public void ClashingValueType() { test(); }
19 @Test public void Compose() { test(); }
20 @Test public void Composition() { test(); }
21 @Test public void ConjunctionMacro() { test(); }
22 @Test public void Constant() { test(); }
23 @Test public void ConstructorNameClash() { test(); }
24 @Test public void DefaultMethods1() { test(); }
25 @Test public void DoubleEffect() { test(); }
26 @Test public void Effects1() { test(); }
27 @Test public void Effects2() { test(); }
28 @Test public void Effects3() { test(); }
29 @Test public void Effects4() { test(); }
30 @Test public void Effects5() { test(); }
31 @Test public void Effects6() { test(); }
32 @Test(expected=ValueNotFound.class)
33 public void EmptyModule() throws ValueNotFound {
34 test("EmptyModule", "");
36 @Test public void ExistentialData() { test(); }
37 @Test public void ExistentialData2() { test(); }
38 @Test public void FaultyRecursion() { test(); }
39 @Test public void Fibonacci() { test(); }
40 @Test public void Fibonacci3() { test(); }
41 @Test public void FingerTree() { test(); }
42 @Test public void Forall1() { test(); }
43 @Test public void Forall2() { test(); }
44 @Test public void Forall3() { test(); }
45 @Test public void Functor() { test(); }
46 @Test public void Generalization() { test(); }
47 @Test public void GuardedExpressionBug() { test(); }
48 @Test public void IdAsOperator() { test(); }
49 @Test public void IllegalChar() { test(); }
50 @Test public void ImportRef() { test(); }
51 @Test public void InconsistentArity() { test(); }
52 @Test public void InconsistentIndentation() { test(); }
53 @Test public void IndentationAndParenthesis() { test(); }
54 @Test public void Inline1() { test(); }
55 @Test public void InstanceIsTypoedAsClass() { test(); }
56 @Test public void InvalidClass1() { test(); }
57 @Test public void InvalidEncoding() { test(); }
58 @Test public void InvalidInstance1() { test(); }
59 @Test public void InvalidJavaTypeAnnotation() { test(); }
60 @Test public void InvalidKinds() { test(); }
61 @Test public void InvalidKinds2() { test(); }
62 @Test public void InvalidKinds3() { test(); }
63 @Test public void InvalidLambda() { test(); }
64 @Test public void InvalidPattern1() { test(); }
65 @Test public void InvalidPattern2() { test(); }
66 @Test public void InvalidPattern3() { test(); }
67 @Test public void InvalidPattern4() { test(); }
68 @Test public void InvalidTypeClassInstance1() { test(); }
69 @Test public void JavaAccess1() { test(); }
70 @Test public void JavaConstructors() { test(); }
71 @Test public void JavaMethods() { test(); }
72 @Test public void JavaTypes() { test(); }
73 @Test public void Kinds1() { test(); }
74 @Test public void Lambda() { test(); }
75 @Test public void List() { test(); }
76 @Test public void ListError1() { test(); }
77 @Test public void ListError2() { test(); }
78 @Test public void ListSyntaxWithoutPrelude() { test(); }
79 @Test public void LocalDefinitions() { test(); }
80 @Test public void LocalDefinitions2() { test(); }
81 @Test public void LocalDefinitions3() { test(); }
82 @Test public void LocalDefinitions4() { test(); }
83 @Test public void Macros1() { test(); }
84 @Test public void Macros2() { test(); }
85 @Test public void Macros4() { test(); }
86 @Test public void Map1() { test(); }
87 @Test public void Matching() { test(); }
88 @Test public void Matching2() { test(); }
89 @Test public void Matching5() { test(); }
90 @Test public void MatchingWithoutTypeAnnotations() { test(); }
91 @Test public void Maybe1() { test(); }
92 @Test public void Maybe2() { test(); }
93 @Test public void Maybe3() { test(); }
94 @Test public void MissingMethod() { test(); }
95 @Test public void MonadBug1() { test(); }
96 @Test public void NoDefinitionErrorMessage() { test(); }
97 @Test public void NoInstance() { test(); }
98 @Test public void NoInstance2() { test(); }
99 @Test public void NonassociativeOperator() { test(); }
100 @Test public void NonexistingEffect() { test(); }
101 @Test public void OneLineMatch() { test(); }
102 @Test public void OpenString1() { test(); }
103 @Test public void OpenString2() { test(); }
104 @Test public void OverloadedArithmetic1() { test(); }
105 @Test public void OverloadedArithmetic2() { test(); }
106 @Test public void OverloadedArithmetic3() { test(); }
107 @Test public void PolymorphicRecursion() { test(); }
108 @Test public void PolymorphicRecursion2() { test(); }
109 @Test public void PrecedenceOfNonoperators() { test(); }
110 @Test public void Primes() { test(); }
111 @Test public void Pythagoras() { test(); }
112 @Test public void RecursiveContext() { test(); }
113 @Test public void RecursiveValues2() { test(); }
114 @Test public void RecursiveValues3() { test(); }
115 @Test public void RecursiveValues4() { test(); }
116 @Test public void RepeatedVariableInPattern() { test(); }
117 @Test public void SelfReferringContextInTypeClass() { test(); }
118 @Test public void SharedTypeVariable() { test(); }
119 @Test public void ShortcutFusion() { test(); }
120 @Test public void Sort2() { test(); }
121 @Test public void StreamFusion() { test(); }
122 @Test public void StringMatching1() { test(); }
123 @Test public void Tuples() { test(); }
124 @Test public void Tuples2() { test(); }
125 @Test public void TypeAlias1() { test(); }
126 @Test public void TypeAlias2() { test(); }
127 @Test public void TypeAlias3() { test(); }
128 @Test public void TypeAnnotation1() { test(); }
129 @Test public void TypeAnnotation2() { test(); }
130 @Test public void TypeClass() { test(); }
131 @Test public void TypeClassBug1() { test(); }
132 @Test public void TypingBug1() { test(); }
133 @Test public void TypingError1() { test(); }
134 @Test public void TypingError2() { test(); }
135 @Test public void UndefinedValue() { test(); }
136 @Test public void UnexpectedToken() { test(); }
137 @Test public void UnknownAnnotation() { test(); }
138 @Test public void UnresolvedClass() { test(); }
139 @Test public void UnresolvedTypeInAnnotation() { test(); }
140 @Test public void UnresolvedTypeInInstance() { test(); }
141 @Test public void UnresolvedVariable() { test(); }
142 @Test public void UnresolvedVariable2() { test(); }
143 @Test public void ValueAsOperator() { test(); }
144 @Test public void Void1() { test(); }
145 @Test public void Void2() { test(); }
146 @Test public void Void3() { test(); }
147 @Test public void While() { test(); }
148 @Test public void WrongDefaultMethod() { test(); }
149 @Test public void WrongInstanceMethod() { test(); }