Author: nickboldt
Date: 2008-12-18 17:56:56 -0500 (Thu, 18 Dec 2008)
New Revision: 12698
Added:
trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/plugin.properties
trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/src/org/jboss/tools/jbpm/convert/test/JBPMConvertAllTests.java
Modified:
trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/META-INF/MANIFEST.MF
Log:
[JBIDE-3399] fix manifest and add wrapper suite
Modified: trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/META-INF/MANIFEST.MF 2008-12-18
21:52:03 UTC (rev 12697)
+++ trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/META-INF/MANIFEST.MF 2008-12-18
22:56:56 UTC (rev 12698)
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Test Plug-in
+Bundle-Name: %BundleName
Bundle-SymbolicName: org.jboss.tools.jbpm.convert.test;singleton:=true
Bundle-Version: 1.0.0
Bundle-RequiredExecutionEnvironment: J2SE-1.5
@@ -14,4 +14,4 @@
org.eclipse.emf.ecore.xmi.impl,
org.osgi.framework
Bundle-ActivationPolicy: lazy
-Bundle-Vendor: JBoss, a division of Red Hat
+Bundle-Vendor: %BundleProvider
\ No newline at end of file
Added: trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/plugin.properties
===================================================================
--- trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/plugin.properties
(rev 0)
+++ trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/plugin.properties 2008-12-18
22:56:56 UTC (rev 12698)
@@ -0,0 +1,3 @@
+# properties file for org.jboss.tools.jbpm.convert.test
+BundleProvider =JBoss, a division of Red Hat
+BundleName = jBPM Convert Tests Bundle
\ No newline at end of file
Added:
trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/src/org/jboss/tools/jbpm/convert/test/JBPMConvertAllTests.java
===================================================================
---
trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/src/org/jboss/tools/jbpm/convert/test/JBPMConvertAllTests.java
(rev 0)
+++
trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/src/org/jboss/tools/jbpm/convert/test/JBPMConvertAllTests.java 2008-12-18
22:56:56 UTC (rev 12698)
@@ -0,0 +1,16 @@
+package org.jboss.tools.jbpm.convert.test;
+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 JBPMConvertAllTests {
+ public static Test suite() {
+ TestSuite suite = new TestSuite();
+ suite.addTestSuite(BpmnConvertTest.class);
+ return suite;
+ }
+}
Show replies by date