mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 00:38:56 +00:00
try to make tests run on build server
This commit is contained in:
parent
3f3d6549ba
commit
bec393937d
2 changed files with 6 additions and 4 deletions
|
@ -15,4 +15,5 @@ Require-Bundle: org.antlr;bundle-version="3.0.0",
|
|||
org.openarchitectureware.dependencies;bundle-version="4.3.0",
|
||||
org.eclipse.emf.compare,
|
||||
org.eclipse.emf.compare.diff,
|
||||
org.eclipse.emf.compare.match
|
||||
org.eclipse.emf.compare.match,
|
||||
com.rcpquickstart.bundletestcollector;bundle-version="1.0.0"
|
||||
|
|
|
@ -11,6 +11,9 @@ package org.eclipse.xtext;
|
|||
import junit.framework.Test;
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
import com.rcpquickstart.bundletestcollector.BundleTestCollector;
|
||||
|
||||
|
||||
/**
|
||||
* @author Jan Köhnlein - Initial contribution and API
|
||||
*
|
||||
|
@ -19,9 +22,7 @@ public class AllTests {
|
|||
|
||||
public static Test suite() {
|
||||
TestSuite suite = new TestSuite("Test for org.eclipse.xtext");
|
||||
//$JUnit-BEGIN$
|
||||
suite.addTestSuite(XtextGrammarTest.class);
|
||||
//$JUnit-END$
|
||||
new BundleTestCollector().collectTests(suite, "org.eclipse.xtext.generator.tests", "", "*");
|
||||
return suite;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue