aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/services/RoleGenaratorServiceImplTest.java
blob: 544a799a00ffccac9c609aeeb5ade32743931f5c (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
package org.onap.vid.services;

import static org.junit.Assert.*;
import java.util.*;
import org.junit.Assert;
import org.junit.Test;

public class RoleGenaratorServiceImplTest {

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

    @Test
    public void testGenerateRoleScript() throws Exception {
        RoleGenaratorServiceImpl testSubject;
        Boolean firstRun = null;
        String result;

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


}