summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/category/CategoryParameterOptionRepTest.java
blob: e1836df5437646ee8b79aa503b0f510089a4cec4 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package org.onap.vid.category;

import org.junit.Test;

public class CategoryParameterOptionRepTest {

    private CategoryParameterOptionRep createTestSubject() {
        return new CategoryParameterOptionRep();
    }

    @Test
    public void testGetId() throws Exception {
        CategoryParameterOptionRep testSubject;
        String result;

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

    @Test
    public void testSetId() throws Exception {
        CategoryParameterOptionRep testSubject;
        String id = "";

        // default test
        testSubject = createTestSubject();
        testSubject.setId(id);
    }

    @Test
    public void testGetName() throws Exception {
        CategoryParameterOptionRep testSubject;
        String result;

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

    @Test
    public void testSetName() throws Exception {
        CategoryParameterOptionRep testSubject;
        String name = "";

        // default test
        testSubject = createTestSubject();
        testSubject.setName(name);
    }
}