Author: rob.stryker(a)jboss.com
Date: 2009-11-10 16:03:29 -0500 (Tue, 10 Nov 2009)
New Revision: 18582
Added:
trunk/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/tests/JMXCoreAllTests.java
Removed:
trunk/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/JMXCoreAllTests.java
Modified:
trunk/jmx/tests/org.jboss.tools.jmx.core.test/META-INF/MANIFEST.MF
Log:
JBIDE-5180 test issue
Modified: trunk/jmx/tests/org.jboss.tools.jmx.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jmx/tests/org.jboss.tools.jmx.core.test/META-INF/MANIFEST.MF 2009-11-10 21:02:39
UTC (rev 18581)
+++ trunk/jmx/tests/org.jboss.tools.jmx.core.test/META-INF/MANIFEST.MF 2009-11-10 21:03:29
UTC (rev 18582)
@@ -14,8 +14,7 @@
org.eclipse.debug.core,
org.eclipse.jdt.launching,
org.jboss.tools.tests
-Export-Package: org.jboss.tools.jmx.core,
- org.jboss.tools.jmx.core.tests,
+Export-Package: org.jboss.tools.jmx.core.tests,
org.jboss.tools.jmx.core.tests.util
Bundle-ClassPath: .
Import-Package: org.jboss.tools.jmx.core
Deleted:
trunk/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/JMXCoreAllTests.java
===================================================================
---
trunk/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/JMXCoreAllTests.java 2009-11-10
21:02:39 UTC (rev 18581)
+++
trunk/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/JMXCoreAllTests.java 2009-11-10
21:03:29 UTC (rev 18582)
@@ -1,16 +0,0 @@
-package org.jboss.tools.jmx.core;
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
-import org.jboss.tools.jmx.core.tests.DefaultProviderTest;
-import org.jboss.tools.jmx.core.tests.NodeBuilderTestCase;
-
-
-public class JMXCoreAllTests {
- public static Test suite() {
- TestSuite suite = new TestSuite();
- suite.addTestSuite(DefaultProviderTest.class);
- suite.addTestSuite(NodeBuilderTestCase.class);
- return suite;
- }
-}
Added:
trunk/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/tests/JMXCoreAllTests.java
===================================================================
---
trunk/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/tests/JMXCoreAllTests.java
(rev 0)
+++
trunk/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/tests/JMXCoreAllTests.java 2009-11-10
21:03:29 UTC (rev 18582)
@@ -0,0 +1,16 @@
+package org.jboss.tools.jmx.core.tests;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+public class JMXCoreAllTests extends TestSuite {
+ public static Test suite(){
+ return new JMXCoreAllTests();
+ }
+
+ public JMXCoreAllTests() {
+ super("JMX Core All Tests");
+ addTest(new TestSuite(DefaultProviderTest.class));
+ addTest(new TestSuite(NodeBuilderTestCase.class));
+ }
+}