summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/ImportTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/ImportTest.java')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/ImportTest.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/ImportTest.java b/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/ImportTest.java
new file mode 100644
index 000000000..7b72fcc94
--- /dev/null
+++ b/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/ImportTest.java
@@ -0,0 +1,30 @@
+package org.onap.vid.asdc.beans.tosca;
+
+import org.junit.Test;
+
+public class ImportTest {
+
+ private Import createTestSubject() {
+ return new Import();
+ }
+
+ @Test
+ public void testGetFile() throws Exception {
+ Import testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getFile();
+ }
+
+ @Test
+ public void testSetFile() throws Exception {
+ Import testSubject;
+ String file = "";
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setFile(file);
+ }
+} \ No newline at end of file