try to make tests run on build server

This commit is contained in:
jkohnlein 2008-07-09 08:57:23 +00:00 committed by sefftinge
parent 3f3d6549ba
commit bec393937d
2 changed files with 6 additions and 4 deletions

View file

@ -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"

View file

@ -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;
}