summaryrefslogtreecommitdiffstats
path: root/wfenginemgrservice/src/test/java/org/onap/workflow/entity/StartProcessRequestTest.java
diff options
context:
space:
mode:
authorZhaoxing <meng.zhaoxing1@zte.com.cn>2017-09-30 14:08:50 +0800
committerZhaoxing <meng.zhaoxing1@zte.com.cn>2017-09-30 14:08:50 +0800
commitb15b381c5fa631699c1a3d27e482d3d77bed6ad8 (patch)
tree7f058e7f289553cc402f603909c7e3698a9e3d4d /wfenginemgrservice/src/test/java/org/onap/workflow/entity/StartProcessRequestTest.java
parent83e300240cea9fb1fa7cf011c8fa8d4aeb0ebca6 (diff)
Add unit test for vfc-nfvo-wfengine
Change-Id: If70f670ce62c3ca577d11b036e705b07a80f82cf Issue-id: VFC-454 Signed-off-by: Zhaoxing <meng.zhaoxing1@zte.com.cn>
Diffstat (limited to 'wfenginemgrservice/src/test/java/org/onap/workflow/entity/StartProcessRequestTest.java')
-rw-r--r--wfenginemgrservice/src/test/java/org/onap/workflow/entity/StartProcessRequestTest.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/wfenginemgrservice/src/test/java/org/onap/workflow/entity/StartProcessRequestTest.java b/wfenginemgrservice/src/test/java/org/onap/workflow/entity/StartProcessRequestTest.java
new file mode 100644
index 0000000..5b35e7f
--- /dev/null
+++ b/wfenginemgrservice/src/test/java/org/onap/workflow/entity/StartProcessRequestTest.java
@@ -0,0 +1,41 @@
+/**
+ * Copyright 2017 ZTE Corporation.
+ * <p>
+ * 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
+ * <p>
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * <p>
+ * 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.
+ */
+package org.onap.workflow.entity;
+
+import com.google.common.collect.ImmutableMap;
+import org.junit.Test;
+
+import java.util.Map;
+
+import static org.hamcrest.core.Is.is;
+import static org.junit.Assert.assertThat;
+
+public class StartProcessRequestTest {
+ @Test
+ public void getParams() throws Exception {
+ StartProcessRequest request = new StartProcessRequest();
+ request.setProcessDefinitionKey("1");
+ Map<String, String> map = ImmutableMap.<String, String>builder()
+ .put("1", "1")
+ .build();
+ request.setParams(map);
+
+ assertThat(request.getParams(), is(map));
+ assertThat(request.getProcessDefinitionKey(), is("1"));
+
+ }
+
+} \ No newline at end of file