Author: scabanovich
Date: 2010-10-01 05:43:11 -0400 (Fri, 01 Oct 2010)
New Revision: 25385
Removed:
trunk/esb/tests/org.jboss.tools.esb.validator.test/src/org/jboss/tools/esb/validator/test/ESBValidatorTestSuite.java
Modified:
trunk/esb/tests/org.jboss.tools.esb.validator.test/src/org/jboss/tools/esb/validator/test/ESBValidatorAllTests.java
Log:
JBIDE-6085
https://jira.jboss.org/browse/JBIDE-6085
Modified:
trunk/esb/tests/org.jboss.tools.esb.validator.test/src/org/jboss/tools/esb/validator/test/ESBValidatorAllTests.java
===================================================================
---
trunk/esb/tests/org.jboss.tools.esb.validator.test/src/org/jboss/tools/esb/validator/test/ESBValidatorAllTests.java 2010-10-01
09:05:37 UTC (rev 25384)
+++
trunk/esb/tests/org.jboss.tools.esb.validator.test/src/org/jboss/tools/esb/validator/test/ESBValidatorAllTests.java 2010-10-01
09:43:11 UTC (rev 25385)
@@ -24,7 +24,9 @@
public static Test suite() {
TestSuite suite = new TestSuite("ESB Validator Tests");
- suite.addTest(new ESBValidatorTestSetup(ESBValidatorTestSuite.suite()));
+ TestSuite suite2 = new TestSuite("ESB Validator Tests");
+ suite2.addTestSuite(ValidationTest.class);
+ suite.addTest(new ESBValidatorTestSetup(suite2));
return new DisableJavaIndexingSetup(suite);
}
Deleted:
trunk/esb/tests/org.jboss.tools.esb.validator.test/src/org/jboss/tools/esb/validator/test/ESBValidatorTestSuite.java
===================================================================
---
trunk/esb/tests/org.jboss.tools.esb.validator.test/src/org/jboss/tools/esb/validator/test/ESBValidatorTestSuite.java 2010-10-01
09:05:37 UTC (rev 25384)
+++
trunk/esb/tests/org.jboss.tools.esb.validator.test/src/org/jboss/tools/esb/validator/test/ESBValidatorTestSuite.java 2010-10-01
09:43:11 UTC (rev 25385)
@@ -1,26 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2010 Red Hat, Inc.
- * Distributed under license by Red Hat, Inc. All rights reserved.
- * This program is 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
- *
- * Contributors:
- * Red Hat, Inc. - initial API and implementation
- ******************************************************************************/
-package org.jboss.tools.esb.validator.test;
-
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
-/**
- * @author Viacheslav Kabanovich
- */
-public class ESBValidatorTestSuite extends TestSuite {
-
- public static Test suite() {
- TestSuite suite = new TestSuite("ESB Validator Tests");
- suite.addTestSuite(ValidationTest.class);
- return suite;
- }
-}
\ No newline at end of file