Unit tests
[vid.git] / vid-app-common / src / test / java / org / onap / vid / services / RoleGenaratorServiceImplTest.java
1 package org.onap.vid.services;
2
3 import static org.junit.Assert.*;
4 import java.util.*;
5 import org.junit.Assert;
6 import org.junit.Test;
7
8 public class RoleGenaratorServiceImplTest {
9
10     private RoleGenaratorServiceImpl createTestSubject() {
11         return new RoleGenaratorServiceImpl();
12     }
13
14     @Test
15     public void testGenerateRoleScript() throws Exception {
16         RoleGenaratorServiceImpl testSubject;
17         Boolean firstRun = null;
18         String result;
19
20         // default test
21         testSubject = createTestSubject();
22         result = testSubject.generateRoleScript(firstRun);
23     }
24
25
26 }