Modify svnfm pom file for build docker
[vfc/nfvo/driver/vnfm/svnfm.git] / huawei / vnfmadapter / VnfmadapterService / service / src / test / java / org / onap / vfc / nfvo / vnfm / svnfm / vnfmadapter / service / dao / impl / VnfmDaoImplTest.java
1 /*
2  * Copyright 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 package org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.service.dao.impl;
17
18 import junit.framework.Assert;
19 import org.junit.Test;
20 import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.service.dao.impl.VnfmDaoImpl;
21 import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.service.entity.Vnfm;
22 import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.common.restclient.ServiceException;
23
24 /**
25  * Created by QuanZhong on 2017/3/17.
26  */
27 public class VnfmDaoImplTest {
28
29     @Test
30     public void insertVnfm() throws ServiceException {
31         VnfmDaoImpl dao = new VnfmDaoImpl();
32         dao.insertVnfm(new Vnfm());
33         Assert.assertTrue(true);
34     }
35
36     @Test
37     public void deleteVnfm() throws ServiceException {
38         VnfmDaoImpl dao = new VnfmDaoImpl();
39         dao.deleteVnfm("abc");
40         Assert.assertTrue(true);
41     }
42
43     @Test
44     public void updateVnfm() throws ServiceException {
45         VnfmDaoImpl dao = new VnfmDaoImpl();
46         dao.updateVnfm(new Vnfm());
47         Assert.assertTrue(true);
48     }
49
50     @Test
51     public void indexVnfms() throws ServiceException {
52         VnfmDaoImpl dao = new VnfmDaoImpl();
53         dao.insertVnfm(new Vnfm());
54         Assert.assertTrue(true);
55
56     }
57
58     @Test
59     public void getVnfmById() {
60         VnfmDaoImpl dao = new VnfmDaoImpl();
61         dao.getVnfmById("abc");
62         Assert.assertTrue(true);
63
64     }
65 }