removed additional bundles by reducing Import-Packages.
[xmlrouter] / integrationtest / src / test / java / org / wamblee / xmlrouter / integrationtest / XmlRouterIntegrationTest.java
1 /*
2  * Copyright 2005-2011 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.xmlrouter.integrationtest;
17
18 import static org.ops4j.pax.exam.CoreOptions.*;
19
20 import org.junit.Test;
21 import org.junit.runner.RunWith;
22 import org.ops4j.pax.exam.Option;
23 import org.ops4j.pax.exam.junit.Configuration;
24 import org.ops4j.pax.exam.junit.JUnit4TestRunner;
25 import org.osgi.framework.BundleContext;
26
27 @RunWith(JUnit4TestRunner.class)
28 public class XmlRouterIntegrationTest {
29
30     @Configuration()
31     public Option[] config() {
32         return options(
33             // Test dependencies
34             mavenBundle().groupId("junit").artifactId("junit-dep")
35                 .version("4.8.2"), //
36             mavenBundle().groupId("org.mockito").artifactId("mockito-all")
37                 .version("1.8.5"), //
38
39             // XML Router API packages.
40             mavenBundle().groupId("org.wamblee.xmlrouter")
41                 .artifactId("xmlrouter-common").versionAsInProject(),//
42             mavenBundle().groupId("org.wamblee.xmlrouter")
43                 .artifactId("xmlrouter-config").versionAsInProject(),//
44             mavenBundle().groupId("org.wamblee.xmlrouter")
45                 .artifactId("xmlrouter-publish").versionAsInProject(),//
46             mavenBundle().groupId("org.wamblee.xmlrouter")
47                 .artifactId("xmlrouter-subscribe").versionAsInProject(),//
48             mavenBundle().groupId("org.wamblee.xmlrouter")
49                 .artifactId("xmlrouter-listener").versionAsInProject(),//
50
51             // OSGI runtimes
52             felix());
53     }
54
55     /*
56      * @Configuration() public Option[] config() { return
57      * options(mavenBundle().groupId("junit").artifactId("junit-dep")
58      * .version("4.8.2"), // mockito 1.7 //
59      * wrappedBundle(mavenBundle().groupId("org.mockito") //
60      * .artifactId("mockito-all").version("1.7")), // mockito 1.8.5 //
61      * mavenBundle().groupId("org.objenesis").artifactId("objenesis") //
62      * .version("1.0"), // // mavenBundle("org.hamcrest",
63      * "hamcrest-core").version("1.1"),//
64      * mavenBundle().groupId("org.mockito").artifactId("mockito-all")
65      * .version("1.8.5"), // felix()); }
66      */
67
68     @Test
69     public void test1(BundleContext aContext) {
70         System.out.println("=== Got context " + aContext);
71
72     }
73
74 }