Changes for checkstyle 8.32
[policy/apex-pdp.git] / testsuites / performance / performance-benchmark-test / src / test / java / org / onap / policy / apex / testsuites / performance / benchmark / eventgenerator / events / InputEventTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.testsuites.performance.benchmark.eventgenerator.events;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNotNull;
25
26 import org.junit.Test;
27
28 /**
29  * Test the InputEvent class.
30  *
31  */
32 public class InputEventTest {
33
34     @Test
35     public void testInputEvent() {
36         InputEvent ie = new InputEvent();
37         assertNotNull(ie);
38
39         ie.setName("EventName");
40         assertEquals("EventName", ie.getName());
41
42         ie.setNameSpace("a.b.c.d");
43         assertEquals("a.b.c.d", ie.getNameSpace());
44
45         ie.setSource("Source");
46         assertEquals("Source", ie.getSource());
47
48         ie.setTarget("Target");
49         assertEquals("Target", ie.getTarget());
50
51         ie.setTestMatchCase(123);
52         assertEquals(123, ie.getTestMatchCase());
53
54         ie.setTestSlogan("A Slogan");
55         assertEquals("A Slogan", ie.getTestSlogan());
56
57         ie.setTestTemperature(123.45);
58         assertEquals((Double) 123.45, (Double) ie.getTestTemperature());
59
60         ie.setTestTimestamp(1234567879);
61         assertEquals(1234567879, ie.getTestTimestamp());
62
63         ie.setVersion("1.2.3");
64         assertEquals("1.2.3", ie.getVersion());
65
66         assertEquals("\"nameSpace\": \"a.b.c.d\",", ie.asJson().substring(4, 27));
67     }
68 }