summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/ImportTest.java
blob: 7b72fcc94bbeed6380e5dc1cbe43570ebba5ee21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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);
    }
}