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 / rest / exceptionmapper / ExceptionMessageTest.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
17 package org.openo.nfvo.vnfmadapter.service.rest.exceptionmapper;
18
19 import static org.junit.Assert.assertEquals;
20 import static org.junit.Assert.assertNotNull;
21
22 import org.junit.Test;
23
24 /**
25  * <br>
26  * <p>
27  * </p>
28  * 
29  * @author
30  * @version NFVO 0.5 Jan 13, 2017
31  */
32 public class ExceptionMessageTest {
33
34     @Test
35     public void testToString() {
36         ExceptionMessage message = new ExceptionMessage();
37         message.setErrorCode("1");
38         message.setHttpCode(200);
39         message.setMessage("Success!");
40         String str = message.toString();
41         assertNotNull(str);
42     }
43
44     @Test
45     public void testGetErrorCode() {
46         ExceptionMessage message = new ExceptionMessage();
47         message.setErrorCode("1");
48         String str = message.getErrorCode();
49         assertEquals("1", str);
50     }
51
52     @Test
53     public void testHttpCode() {
54         ExceptionMessage message = new ExceptionMessage();
55         message.setHttpCode(200);
56         int str = message.getHttpCode();
57         assertEquals(200, str);
58     }
59
60     @Test
61     public void testGetMessage() {
62         ExceptionMessage message = new ExceptionMessage();
63         message.setMessage("Success!");
64         String str = message.getMessage();
65         assertEquals("Success!", str);
66     }
67
68 }