summaryrefslogtreecommitdiffstats
path: root/common-app-api/src/test/java/org/openecomp/sdc/common/datastructure/WrapperTest.java
blob: 9c18861d408478520ddc71e49d66d668d7cdd690 (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
package org.openecomp.sdc.common.datastructure;

import org.junit.Test;


public class WrapperTest {

	private Wrapper createTestSubject() {
		return new Wrapper(null);
	}



	
	@Test
	public void testIsEmpty() throws Exception {
		Wrapper testSubject;
		boolean result;

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