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