4dc0209547d6e4b88719474f96b04999faa1808c
[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.Test;
4
5 /**
6  * Copyright 2018 ZTE Corporation.
7  * <p>
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * <p>
12  * http://www.apache.org/licenses/LICENSE-2.0
13  * <p>
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20 public class ResultTest {
21     @Test
22     public void getId() throws Exception {
23         String uuid = "123";
24         Result result = new Result(uuid);
25         assert result.getId().equals(uuid);
26     }
27
28 }