diff options
author | ezhil <ezhrajam@in.ibm.com> | 2019-01-10 19:20:16 +0530 |
---|---|---|
committer | Patrick Brady <patrick.brady@att.com> | 2019-01-21 22:05:22 +0000 |
commit | 1f28945a3c5d1a4ffc74edc815cf502d715e33ac (patch) | |
tree | f8da1e3e137168c3056336f247fe2a4df440fab2 /appc-sequence-generator/appc-sequence-generator-bundle | |
parent | 63b928252c2d5ef905f5e074fa8bbcfbf460d780 (diff) |
Added Junit test file for RequestInfo.java
Change-Id: I715d86976b1a328ce463701add3967a559ae1b7e
Issue-ID: APPC-1320
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
Diffstat (limited to 'appc-sequence-generator/appc-sequence-generator-bundle')
-rw-r--r-- | appc-sequence-generator/appc-sequence-generator-bundle/src/test/java/org/onap/appc/seqgen/objects/RequestInfoTest.java | 68 |
1 files changed, 68 insertions, 0 deletions
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()); + } + +} |