Refactoring Consolidation Service
[sdc.git] / common-app-api / src / test / java / org / openecomp / sdc / common / datastructure / WrapperTest.java
1 package org.openecomp.sdc.common.datastructure;
2
3 import org.junit.Test;
4
5
6 public class WrapperTest {
7
8         private Wrapper createTestSubject() {
9                 return new Wrapper(null);
10         }
11
12
13
14         
15         @Test
16         public void testIsEmpty() throws Exception {
17                 Wrapper testSubject;
18                 boolean result;
19
20                 // default test
21                 testSubject = createTestSubject();
22                 result = testSubject.isEmpty();
23         }
24 }