summaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-server
diff options
context:
space:
mode:
authorYuanHu <yuan.hu1@zte.com.cn>2018-03-07 15:36:41 +0800
committerYuanHu <yuan.hu1@zte.com.cn>2018-03-07 15:36:41 +0800
commitde4cddaad0aea160d13d48c6d2379ae9f8a2a693 (patch)
tree2486b4ffa14770d442cc5023805121376e0ea22e /sdc-workflow-designer-server
parent0541e2e4f483dc52db595af119534fa1e4a83e30 (diff)
Unit Test for 'FileCommonUtils'.
Test method for FileCommonUtils#readString(String) Issue-ID: SDC-1078 Change-Id: Ifffe7105b235fda932e1a39b40cafce7d371255f Signed-off-by: YuanHu <yuan.hu1@zte.com.cn>
Diffstat (limited to 'sdc-workflow-designer-server')
-rw-r--r--sdc-workflow-designer-server/src/test/java/org/onap/sdc/workflowdesigner/utils/FileCommonUtilsTest.java27
1 files changed, 24 insertions, 3 deletions
diff --git a/sdc-workflow-designer-server/src/test/java/org/onap/sdc/workflowdesigner/utils/FileCommonUtilsTest.java b/sdc-workflow-designer-server/src/test/java/org/onap/sdc/workflowdesigner/utils/FileCommonUtilsTest.java
index b8d4319c..9a49b29e 100644
--- a/sdc-workflow-designer-server/src/test/java/org/onap/sdc/workflowdesigner/utils/FileCommonUtilsTest.java
+++ b/sdc-workflow-designer-server/src/test/java/org/onap/sdc/workflowdesigner/utils/FileCommonUtilsTest.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2017 ZTE Corporation.
+ * Copyright (c) 2018 ZTE Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the Apache License, Version 2.0
* and the Eclipse Public License v1.0 which both accompany this distribution,
@@ -14,6 +14,7 @@ package org.onap.sdc.workflowdesigner.utils;
import static org.junit.Assert.assertEquals;
+import java.io.File;
import java.io.IOException;
import org.junit.After;
@@ -38,8 +39,28 @@ public class FileCommonUtilsTest {
public void tearDown() throws Exception {}
/**
+ * Test method for {@link org.onap.sdc.workflowdesigner.utils.FileCommonUtils#readString(String)}
+ *
+ */
+ @Test
+ public final void readStringString() {
+ String fileName = "src\\test\\resources\\workflow\\template-test.bpmn20.xml";
+ File file = new File(fileName);
+ if (file.exists()) {
+ try {
+ String s = FileCommonUtils.readString(fileName);
+ FileCommonUtils.write("test.xml", s);
+ assertEquals(s.isEmpty(), false);
+ } catch (IOException e) {
+ }
+ }
+ }
+
+
+ /**
* Test method for
- * {@link org.onap.sdc.workflowdesigner.utils.FileCommonUtils#write(String, String)} .
+ * {@link org.onap.sdc.workflowdesigner.utils.FileCommonUtils#write(String, String)}
+ *
*/
@Test
public final void writeStringString() {
@@ -57,7 +78,7 @@ public class FileCommonUtilsTest {
/**
* Test method for
* {@link org.onap.sdc.workflowdesigner.utils.FileCommonUtils#writetoAbsoluteFile(String, String, String)}
- * .
+ *
*/
@Test
public final void saveFileStringStringString() {