From 1f28945a3c5d1a4ffc74edc815cf502d715e33ac Mon Sep 17 00:00:00 2001 From: ezhil Date: Thu, 10 Jan 2019 19:20:16 +0530 Subject: Added Junit test file for RequestInfo.java Change-Id: I715d86976b1a328ce463701add3967a559ae1b7e Issue-ID: APPC-1320 Signed-off-by: ezhil --- .../onap/appc/seqgen/objects/RequestInfoTest.java | 68 ++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/RequestInfoTest.java diff --git a/appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/RequestInfoTest.java b/appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/RequestInfoTest.java new file mode 100644 index 000000000..acb8430ac --- /dev/null +++ b/appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/RequestInfoTest.java @@ -0,0 +1,68 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP : APPC + * ================================================================================ + * Copyright (C) 2019 IBM. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * ============LICENSE_END========================================================= + */ + +package org.onap.appc.seqgen.objects; + +import static org.mockito.Mockito.mock; +import static org.junit.Assert.assertEquals; + +import org.junit.Before; +import org.junit.Test; +import static org.junit.Assert.assertNotNull; + +public class RequestInfoTest { + + private RequestInfo requestInfo; + + @Before + public void setUp() { + requestInfo = new RequestInfo(); + } + + @Test + public void get_set_Action() { + String action = "some_action"; + requestInfo.setAction(action); + assertEquals(action, requestInfo.getAction()); + } + + @Test + public void get_set_Action_Level() { + String actionLevel = "some_action_level"; + requestInfo.setActionLevel(actionLevel); + assertEquals(actionLevel, requestInfo.getActionLevel()); + } + + @Test + public void get_set_Action_Identifier() { + ActionIdentifier actionIdentifier = mock(ActionIdentifier.class); + requestInfo.setActionIdentifier(actionIdentifier); + assertEquals(actionIdentifier, requestInfo.getActionIdentifier()); + } + + @Test + public void get_set_Payload() { + String payload = "some_payload"; + requestInfo.setPayload(payload); + assertEquals(payload, requestInfo.getPayload()); + } + +} -- cgit 1.2.3-korg