Skip to content

Commit 32f93ca

Browse files
committedDec 2, 2014
Merge branch 'jwc/kill-docs' into development
2 parents 7fab093 + 3f1c6f0 commit 32f93ca

File tree

1,336 files changed

+475
-171687
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,336 files changed

+475
-171687
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ Icon[^-0-9a-zA-Z]
6666
############################
6767
target/
6868

69+
# eclipse noise #
70+
#################
6971
.metadata/
7072
.classpath
7173
.settings/

‎core/pog/src/test/java/org/overture/pog/tests/newtests/PogAllExamplesTest.java

+11-7
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
import java.lang.reflect.Type;
66
import java.util.List;
77

8-
import org.junit.Ignore;
8+
import junitparams.JUnitParamsRunner;
9+
910
import org.junit.runner.RunWith;
10-
import org.junit.runners.Parameterized;
1111
import org.overture.ast.analysis.AnalysisException;
1212
import org.overture.ast.node.INode;
1313
import org.overture.core.tests.examples.ParamExamplesTest;
@@ -21,14 +21,11 @@
2121
*
2222
* @author ldc
2323
*/
24-
@RunWith(Parameterized.class)
24+
@RunWith(JUnitParamsRunner.class)
2525
public class PogAllExamplesTest extends ParamExamplesTest<PogTestResult>
2626
{
2727

28-
public PogAllExamplesTest(String name, List<INode> model, String result)
29-
{
30-
super(name, model, result);
31-
}
28+
3229

3330
@Override
3431
public PogTestResult processModel(List<INode> model)
@@ -70,4 +67,11 @@ public Type getResultType()
7067
return resultType;
7168
}
7269

70+
private static String EXAMPLES_ROOT = "../../externals/examples/target/classes/";
71+
72+
@Override
73+
protected String getRelativeExamplesPath() {
74+
return EXAMPLES_ROOT;
75+
}
76+
7377
}

0 commit comments

Comments
 (0)