1 package org.openecomp.sdc.be.model.tosca.constraints;
3 import javax.annotation.Generated;
8 public class MinLengthConstraintTest {
10 private MinLengthConstraint createTestSubject() {
11 return new MinLengthConstraint(null);
19 public void testGetMinLength() throws Exception {
20 MinLengthConstraint testSubject;
24 testSubject = createTestSubject();
25 result = testSubject.getMinLength();
30 public void testSetMinLength() throws Exception {
31 MinLengthConstraint testSubject;
32 Integer minLength = 0;
35 testSubject = createTestSubject();
36 testSubject.setMinLength(minLength);