aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/model/ResultTest.java
blob: ea7448bc4f3a623686ef1184a29421ad0713a251 (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.model;

import org.junit.Test;

public class ResultTest {

    private Result createTestSubject() {
        return new Result("");
    }

    @Test
    public void testGetResult() throws Exception {
        Result testSubject;
        String result;

        // default test
        testSubject = createTestSubject();
        result = testSubject.getResult();
    }

    @Test
    public void testSetResult() throws Exception {
        Result testSubject;
        String result = "";

        // default test
        testSubject = createTestSubject();
        testSubject.setResult(result);
    }
}