119d4f200c5a4ffbcbc49d10954d6d2dc0408035
[vfc/nfvo/resmanagement.git] /
1 /*
2  * Copyright 2016 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.resmanagement.service.entity;
17
18 import static org.junit.Assert.assertTrue;
19
20 import org.junit.Before;
21 import org.junit.Test;
22
23 import net.sf.json.JSONObject;
24
25 public class HostEntityTest {
26     private HostEntity hostEntity;
27
28     @Before
29     public void setUp() {
30         hostEntity = new HostEntity();
31     }
32
33     @Test
34     public void testHostEntity() {
35         assertTrue(hostEntity.toString() != null);
36         assertTrue(HostEntity.toEntity(new JSONObject()) != null);
37     }
38 }