c74424b3fae47ad9ea9c343f94fad04894803703
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / sfc-driver / src / test / java / org / onap / sfc / entity / ResultTest.java
1 package org.onap.sfc.entity;
2
3 import org.junit.Before;
4 import org.junit.Test;
5
6 /**
7  * Copyright 2018 ZTE Corporation.
8  * <p>
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * <p>
13  * http://www.apache.org/licenses/LICENSE-2.0
14  * <p>
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21 public class ResultTest {
22     Result entity1;
23     Result entity2;
24
25     @Before
26     public void setUp() throws Exception {
27         entity1 = new Result("");
28         entity2 = new Result("");
29     }
30
31     @Test
32     public void getId() throws Exception {
33         String uuid = "123";
34         Result result = new Result(uuid);
35         assert result.getId().equals(uuid);
36     }
37
38     @Test
39     public void equals() throws Exception {
40         assert !entity2.equals(entity1);
41         assert entity2.equals(entity2);
42     }
43
44     @Test
45     public void toStringTest() throws Exception {
46         assert entity2.toString() != null;
47     }
48 }