add the combination of IOC and dropwizard code
[vfc/nfvo/wfengine.git] / dropwizard-ioc-container / src / test / java / org / openo / dropwizard / ioc / test / service / IOCBundleTest.java
1 /**
2  * Copyright 2017 ZTE Corporation.
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.openo.dropwizard.ioc.test.service;
17
18 import org.glassfish.hk2.api.ServiceLocator;
19 import org.junit.Before;
20 import org.junit.Test;
21 import org.openo.dropwizard.ioc.test.service.app.ExampleApp;
22 import org.openo.dropwizard.ioc.utils.ServiceLocatorHolder;
23
24 import junit.framework.Assert;
25
26 public class IOCBundleTest {
27
28
29   
30   @Before
31   public void setUp() throws Exception {
32     ExampleApp.main(null);
33   }
34
35   @Test
36   public void test() {
37     
38     ServiceLocator locator  = ServiceLocatorHolder.getLocator();
39     
40     TestService testService = locator.getService(TestService.class);
41     
42     Assert.assertNotNull(testService);
43     
44     Assert.assertEquals(TestService.HELLO, testService.sayHello());
45     
46     Assert.assertEquals(PreTestService.HELLO, testService.sayHelloToPreTestService());
47   }
48
49 }