First steps towards pax-exam automated incontainer tests.
[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(junitBundles(),
33         // mockito 1.7
34         // wrappedBundle(mavenBundle().groupId("org.mockito")
35         // .artifactId("mockito-all").version("1.7")),
36         // mockito 1.8.5
37             mavenBundle().groupId("org.mockito").artifactId("mockito-all")
38                 .version("1.8.5"), //
39             felix());
40     }
41
42     @Test
43     public void test1(BundleContext aContext) {
44         System.out.println("=== Got context " + aContext);
45
46     }
47
48 }