mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 00:38:56 +00:00
Sort tests in test suites
Added UI tests
This commit is contained in:
parent
4e2e599f17
commit
ae9f09e1dc
3 changed files with 30 additions and 11 deletions
|
@ -3,6 +3,11 @@ package org.eclipse.xtext.generator;
|
|||
import junit.framework.Test;
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
/**
|
||||
* DO NOT MODIFY MANUALLY! This class has been automatically generated.
|
||||
* Install org.eclipse.xtext.testcollector and use the Xtext Tools/Create Test Suite
|
||||
* action on the source folder to regenerate this.
|
||||
*/
|
||||
public class AutoTestSuite {
|
||||
|
||||
public static Test suite() {
|
||||
|
@ -11,25 +16,25 @@ public class AutoTestSuite {
|
|||
suite.addTestSuite(org.eclipse.xtext.generator.resource.ResourceTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.grammarinheritance.InheritanceTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.grammarinheritance.ToEcoreTrafoTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.lexer.LexerSLComment.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.lexer.LexerErrorTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.metamodelreferencing.tests.MultiGenMMTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.lexer.LexerSLComment.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.metamodelreferencing.tests.MetamodelRefTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.metamodelreferencing.tests.MultiGenMMTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parseerrorhandling.ParseErrorHandlingTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parser.PartialParserReplaceTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parser.PartialParserTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parser.PartialParsingPerformanceTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parser.PartialParsingPointerTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parser.XtextParserTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parser.PartialParsingPerformanceTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parser.PartialParserReplaceTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.HiddenTokensTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.CommentTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.ASTChangeTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.SerializeTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.NodeModelTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.NodeContentAdapterTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.LengthOffsetLineTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.InvalidTokenTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.CommentTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.EmptyModelTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.HiddenTokensTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.InvalidTokenTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.LengthOffsetLineTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.NodeContentAdapterTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.NodeModelTest.class);
|
||||
suite.addTestSuite(org.eclipse.xtext.parsetree.SerializeTest.class);
|
||||
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);
|
||||
|
|
|
@ -3,6 +3,11 @@ package org.eclipse.xtext;
|
|||
import junit.framework.Test;
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
/**
|
||||
* DO NOT MODIFY MANUALLY! This class has been automatically generated.
|
||||
* Install org.eclipse.xtext.testcollector and use the Xtext Tools/Create Test Suite
|
||||
* action on the source folder to regenerate this.
|
||||
*/
|
||||
public class AutoTestSuite {
|
||||
|
||||
public static Test suite() {
|
||||
|
|
|
@ -1,3 +1,12 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2008 itemis AG (http://www.itemis.eu) and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.xtext.resource;
|
||||
|
||||
import java.net.URL;
|
||||
|
|
Loading…
Reference in a new issue