[
https://issues.jboss.org/browse/ARQ-193?page=com.atlassian.jira.plugin.sy...
]
Thomas Diesler updated ARQ-193:
-------------------------------
Status: Resolved (was: Pull Request Sent)
Resolution: Done
Done
Running
org.jboss.arquillian.container.osgi.arq193.ARQ193GeneratedTestCase
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.314 sec
Running org.jboss.arquillian.container.osgi.arq193.ARQ193ExplicitTestCase
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.259 sec
Create auxillary OSGi test bundle
---------------------------------
Key: ARQ-193
URL:
https://issues.jboss.org/browse/ARQ-193
Project: Arquillian
Issue Type: Task
Components: OSGi Containers
Reporter: Thomas Diesler
Assignee: Thomas Diesler
Fix For: 1.0.0.Beta1
Currently the test bundle must contain the test case and a number of Import-Package
statemetns related to the test infrastructure
@Deployment
public static JavaArchive createdeployment()
{
final JavaArchive archive = ShrinkWrap.create("test.jar",
JavaArchive.class);
archive.setManifest(new Asset()
{
public InputStream openStream()
{
OSGiManifestBuilder builder = OSGiManifestBuilder.newInstance();
builder.addBundleSymbolicName(archive.getName());
builder.addBundleManifestVersion(2);
builder.addBundleActivator(SimpleActivator.class.getName());
// [TODO] generate a separate bundle the contains the test case
builder.addExportPackages(OSGiEmbeddedFrameworkTestCase.class);
builder.addImportPackages("org.jboss.arquillian.junit",
"org.jboss.shrinkwrap.api", "org.jboss.shrinkwrap.api.spec");
builder.addImportPackages("javax.inject", "org.junit",
"org.junit.runner");
return builder.openStream();
}
});
archive.addClasses(SimpleActivator.class, SimpleService.class);
archive.addClasses(OSGiEmbeddedFrameworkTestCase.class);
return archive;
}
There test bundle should not need to contain the test case nor these additional imports.
An auxillary bundle that contains the test case should be generated and installed
--
This message is automatically generated by JIRA.
For more information on JIRA, see:
http://www.atlassian.com/software/jira