aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/MinLengthConstraintTest.java
blob: 1b8694f49e08fc89ef7e68c0e85c9a5c80f274a4 (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
27
28
29
30
31
32
33
34
35
36
package org.openecomp.sdc.be.model.tosca.constraints;

import org.junit.Test;


public class MinLengthConstraintTest {

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

	


	
	@Test
	public void testGetMinLength() throws Exception {
		MinLengthConstraint testSubject;
		Integer result;

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

	
	@Test
	public void testSetMinLength() throws Exception {
		MinLengthConstraint testSubject;
		Integer minLength = 0;

		// default test
		testSubject = createTestSubject();
		testSubject.setMinLength(minLength);
	}
}