Author: nickboldt
Date: 2008-12-18 16:52:03 -0500 (Thu, 18 Dec 2008)
New Revision: 12697
Added:
branches/jbosstools-3.0.0.CR1/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/AllTests.java
branches/jbosstools-3.0.0.CR1/jmx/tests/org.jboss.tools.jmx.ui.test/src/org/jboss/tools/jmx/ui/AllTests.java
Modified:
branches/jbosstools-3.0.0.CR1/jmx/tests/org.jboss.tools.jmx.core.test/META-INF/MANIFEST.MF
Log:
[JBIDE-3401] add tests to build (backport from trunk)
Modified:
branches/jbosstools-3.0.0.CR1/jmx/tests/org.jboss.tools.jmx.core.test/META-INF/MANIFEST.MF
===================================================================
---
branches/jbosstools-3.0.0.CR1/jmx/tests/org.jboss.tools.jmx.core.test/META-INF/MANIFEST.MF 2008-12-18
18:20:27 UTC (rev 12696)
+++
branches/jbosstools-3.0.0.CR1/jmx/tests/org.jboss.tools.jmx.core.test/META-INF/MANIFEST.MF 2008-12-18
21:52:03 UTC (rev 12697)
@@ -7,11 +7,11 @@
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Vendor: %BundleProvider
-Require-Bundle: org.junit4;bundle-version="4.3.1",
- org.eclipse.core.resources;bundle-version="3.4.0",
- org.eclipse.core.runtime;bundle-version="3.4.0",
- org.jboss.tools.jmx.core;bundle-version="0.2.1",
- org.eclipse.debug.core;bundle-version="3.4.0",
- org.eclipse.jdt.launching;bundle-version="3.4.0"
+Require-Bundle: org.junit,
+ org.eclipse.core.resources,
+ org.eclipse.core.runtime,
+ org.jboss.tools.jmx.core,
+ org.eclipse.debug.core,
+ org.eclipse.jdt.launching
Export-Package: org.jboss.tools.jmx.core.tests,
org.jboss.tools.jmx.core.tests.util
Added:
branches/jbosstools-3.0.0.CR1/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/AllTests.java
===================================================================
---
branches/jbosstools-3.0.0.CR1/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/AllTests.java
(rev 0)
+++
branches/jbosstools-3.0.0.CR1/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/AllTests.java 2008-12-18
21:52:03 UTC (rev 12697)
@@ -0,0 +1,18 @@
+package org.jboss.tools.jmx.core;
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+import org.jboss.tools.jmx.core.tests.DefaultMBeanServerConnectionFactoryTest;
+import org.jboss.tools.jmx.core.tests.DefaultProviderTest;
+import org.jboss.tools.jmx.core.tests.NodeBuilderTestCase;
+
+
+public class AllTests {
+ public static Test suite() {
+ TestSuite suite = new TestSuite();
+ suite.addTestSuite(DefaultMBeanServerConnectionFactoryTest.class);
+ suite.addTestSuite(DefaultProviderTest.class);
+ suite.addTestSuite(NodeBuilderTestCase.class);
+ return suite;
+ }
+}
Added:
branches/jbosstools-3.0.0.CR1/jmx/tests/org.jboss.tools.jmx.ui.test/src/org/jboss/tools/jmx/ui/AllTests.java
===================================================================
---
branches/jbosstools-3.0.0.CR1/jmx/tests/org.jboss.tools.jmx.ui.test/src/org/jboss/tools/jmx/ui/AllTests.java
(rev 0)
+++
branches/jbosstools-3.0.0.CR1/jmx/tests/org.jboss.tools.jmx.ui.test/src/org/jboss/tools/jmx/ui/AllTests.java 2008-12-18
21:52:03 UTC (rev 12697)
@@ -0,0 +1,14 @@
+package org.jboss.tools.jmx.ui;
+import org.jboss.tools.jmx.ui.internal.MBeanUtilsTestCase;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+
+public class AllTests {
+ public static Test suite() {
+ TestSuite suite = new TestSuite();
+ suite.addTestSuite(MBeanUtilsTestCase.class);
+ return suite;
+ }
+}
Show replies by date