Update gvnfm-driver .gitreview file
[vfc/nfvo/driver/vnfm/gvnfm.git] / juju / juju-vnfmadapter / Juju-vnfmadapterService / service / src / test / java / org / onap / vfc / nfvo / vnfm / gvnfm / jujuvnfmadapter / service / rest / TestMockUp.java
1 /*
2  * Copyright (c) 2016-2017, Huawei Technologies Co., Ltd.
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
17 package org.onap.vfc.nfvo.vnfm.gvnfm.jujuvnfmadapter.service.rest;
18
19 import org.junit.Assert;
20 import org.junit.Before;
21 import org.junit.Test;
22 import org.onap.vfc.nfvo.vnfm.gvnfm.jujuvnfmadapter.common.StringUtil;
23 import org.onap.vfc.nfvo.vnfm.gvnfm.jujuvnfmadapter.service.rest.ConfigRoa;
24
25 import mockit.Mock;
26 import mockit.MockUp;
27
28
29 /**
30  * <br/>
31  * <p>
32  * </p>
33  *
34  * @author        quanzhong@huawei.com
35  * @version     NFVO 0.5  Nov 2, 2016
36  */
37 public class TestMockUp {
38     ConfigRoa roa;
39     /**
40      * <br/>
41      *
42      * @throws java.lang.Exception
43      * @since  NFVO 0.5
44      */
45     @Before
46     public void setUp() throws Exception {
47         roa = new ConfigRoa();
48     }
49
50     @Test
51     public void test() {
52         new MockUp<StringUtil>(){
53             @Mock
54             public boolean isValidUrl(String url) {
55                 return true;
56             }
57
58         };
59         Assert.assertTrue(StringUtil.isValidUrl("abc"));
60     }
61
62 }