summaryrefslogtreecommitdiffstats
path: root/common-app-api/src/test/java/org/openecomp/sdc/common/datastructure/WrapperTest.java
blob: 5f80470b9bfa8bb3129c01eccbab70e92e9cfbed (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("test");
	}



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

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