3d82f2b7344b5ea9542177c55e87cb1fde706d92
[music.git] / src / test / java / org / onap / music / unittests / jsonobjects / MusicResponseTest.java
1 /*
2  * ============LICENSE_START==========================================
3  * org.onap.music
4  * ===================================================================
5  *  Copyright (c) 2019 IBM.
6  * ===================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  * 
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  * 
19  * ============LICENSE_END=============================================
20  * ====================================================================
21  */
22
23 package org.onap.music.unittests.jsonobjects;
24
25
26 import static org.junit.Assert.assertEquals;
27
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.onap.music.datastore.jsonobjects.MusicResponse;
31
32 public class MusicResponseTest {
33
34     private MusicResponse musicResponse;
35     
36     @Before
37     public void setUp()
38     {
39         musicResponse = new MusicResponse();
40     }
41     
42     @Test
43     public void testStatus()
44     {
45         musicResponse.setStatus("Status");
46         assertEquals("Status", musicResponse.getStatus());
47     }
48     
49     @Test
50     public void testMessage()
51     {
52         musicResponse.setMessage("Message");
53         assertEquals("Message", musicResponse.getMessage());
54     }
55     
56     @Test
57     public void testSucces()
58     {
59         musicResponse.setSucces(true);
60         assertEquals(true, musicResponse.isSucces());
61     }
62 }