ae0a50612d4d55375734c380b68afb17e88c58cc
[sdc.git] /
1 package org.openecomp.sdc.be.model.tosca.constraints;
2
3 import javax.annotation.Generated;
4
5 import org.junit.Test;
6
7
8 public class MaxLengthConstraintTest {
9
10         private MaxLengthConstraint createTestSubject() {
11                 return new MaxLengthConstraint(null);
12         }
13
14         
15         
16         @Test
17         public void testGetMaxLength() throws Exception {
18                 MaxLengthConstraint testSubject;
19                 Integer result;
20
21                 // default test
22                 testSubject = createTestSubject();
23                 result = testSubject.getMaxLength();
24         }
25
26         
27         @Test
28         public void testSetMaxLength() throws Exception {
29                 MaxLengthConstraint testSubject;
30                 Integer maxLength = 0;
31
32                 // default test
33                 testSubject = createTestSubject();
34                 testSubject.setMaxLength(maxLength);
35         }
36 }