summaryrefslogtreecommitdiffstats
path: root/wfenginemgrservice/src/test/java/org/onap/workflow/tools
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/tools
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/tools')
-rw-r--r--wfenginemgrservice/src/test/java/org/onap/workflow/tools/HttpDeleteWithBodyTest.java29
-rw-r--r--wfenginemgrservice/src/test/java/org/onap/workflow/tools/RequestParametersTest.java22
2 files changed, 45 insertions, 6 deletions
diff --git a/wfenginemgrservice/src/test/java/org/onap/workflow/tools/HttpDeleteWithBodyTest.java b/wfenginemgrservice/src/test/java/org/onap/workflow/tools/HttpDeleteWithBodyTest.java
new file mode 100644
index 0000000..67cd8c9
--- /dev/null
+++ b/wfenginemgrservice/src/test/java/org/onap/workflow/tools/HttpDeleteWithBodyTest.java
@@ -0,0 +1,29 @@
+/**
+ * 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.tools;
+
+
+import org.junit.Assert;
+import org.junit.Test;
+
+
+public class HttpDeleteWithBodyTest {
+ @Test
+ public void testHttpDeleteWithBody() {
+ HttpDeleteWithBody body = new HttpDeleteWithBody();
+ Assert.assertEquals(HttpDeleteWithBody.METHOD_NAME, body.getMethod());
+ }
+}
diff --git a/wfenginemgrservice/src/test/java/org/onap/workflow/tools/RequestParametersTest.java b/wfenginemgrservice/src/test/java/org/onap/workflow/tools/RequestParametersTest.java
index 782ee84..aeeb3e3 100644
--- a/wfenginemgrservice/src/test/java/org/onap/workflow/tools/RequestParametersTest.java
+++ b/wfenginemgrservice/src/test/java/org/onap/workflow/tools/RequestParametersTest.java
@@ -1,12 +1,12 @@
/**
* 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
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
+ * <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.
@@ -17,13 +17,23 @@ package org.onap.workflow.tools;
import org.junit.Test;
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.hamcrest.core.Is.is;
+
/**
*
*/
public class RequestParametersTest {
@Test
- public void testToString(){
+ public void testToString() {
+ RequestParameters result = new RequestParameters();
+ assertThat(result.toString(), is("casCade [casCade=false]"));
+ }
+
+ @Test
+ public void testMethod() {
RequestParameters result = new RequestParameters();
- result.toString();
+ result.setCasCade(true);
+ assertThat(result.isCasCade(), is(true));
}
}