1 package org.openecomp.sdc.be.model.tosca.constraints;
3 import javax.annotation.Generated;
8 public class MaxLengthConstraintTest {
10 private MaxLengthConstraint createTestSubject() {
11 return new MaxLengthConstraint(null);
17 public void testGetMaxLength() throws Exception {
18 MaxLengthConstraint testSubject;
22 testSubject = createTestSubject();
23 result = testSubject.getMaxLength();
28 public void testSetMaxLength() throws Exception {
29 MaxLengthConstraint testSubject;
30 Integer maxLength = 0;
33 testSubject = createTestSubject();
34 testSubject.setMaxLength(maxLength);