mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 00:38:56 +00:00
Completed test suite
This commit is contained in:
parent
cb0b98d8d3
commit
440e1858df
4 changed files with 6 additions and 10 deletions
|
@ -38,8 +38,11 @@ public class AutoTestSuite {
|
|||
suite.addTestSuite(org.eclipse.xtext.parsetree.reconstr.ComplexReconstrTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.reconstr.SimpleReconstrTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.reconstr.WhitespacePreservingCallbackTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.reference.CommentOnEofBug_234135_Test.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.reference.LeafNodeBug_234132_Test.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.typeresolution.XtextUtilConstructionTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.xtext2ecore.ActionTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.xtext2ecore.BootstrapModelTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.xtext2ecore.MultiEPackagesTest.class);
|
||||
return suite;
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@ import org.eclipse.xtext.tests.AbstractGeneratorTest;
|
|||
* @author Jan Köhnlein - Initial contribution and API
|
||||
*
|
||||
*/
|
||||
public class CommentOnEofBug_234135 extends AbstractGeneratorTest {
|
||||
public class CommentOnEofBug_234135_Test extends AbstractGeneratorTest {
|
||||
|
||||
public void testCommentOnEof() throws Exception {
|
||||
with(ReferenceGrammarStandaloneSetup.class);
|
|
@ -19,7 +19,7 @@ import org.eclipse.xtext.tests.AbstractGeneratorTest;
|
|||
* @author Jan Köhnlein - Initial contribution and API
|
||||
*
|
||||
*/
|
||||
public class LeafNodeBug_234132 extends AbstractGeneratorTest {
|
||||
public class LeafNodeBug_234132_Test extends AbstractGeneratorTest {
|
||||
|
||||
public void testLeafNodeBug() throws Exception {
|
||||
with(ReferenceGrammarStandaloneSetup.class);
|
|
@ -13,15 +13,8 @@ package org.eclipse.xtext.xtext2ecore;
|
|||
import java.io.InputStream;
|
||||
import java.util.List;
|
||||
|
||||
import org.eclipse.emf.common.util.URI;
|
||||
import org.eclipse.emf.ecore.EPackage;
|
||||
import org.eclipse.emf.ecore.EcorePackage;
|
||||
import org.eclipse.emf.ecore.resource.Resource;
|
||||
import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
|
||||
import org.eclipse.emf.ecore.xmi.impl.XMIResourceFactoryImpl;
|
||||
import org.eclipse.m2t.type.emf.EmfRegistryMetaModel;
|
||||
import org.eclipse.xtext.Grammar;
|
||||
import org.eclipse.xtext.XtextPackage;
|
||||
import org.eclipse.xtext.XtextStandaloneSetup;
|
||||
import org.eclipse.xtext.tests.AbstractGeneratorTest;
|
||||
import org.eclipse.xtext.xtextutil.AbstractType;
|
||||
|
@ -36,7 +29,7 @@ import org.openarchitectureware.xtend.XtendFacade;
|
|||
* @author Jan Köhnlein
|
||||
*
|
||||
*/
|
||||
public class TestBootstrapModel extends AbstractGeneratorTest {
|
||||
public class BootstrapModelTest extends AbstractGeneratorTest {
|
||||
|
||||
@Override
|
||||
protected void setUp() throws Exception {
|
Loading…
Reference in a new issue