4263a6fe28e5765f95c038a3989e4ca49e100df0
[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 MinLengthConstraintTest {
9
10         private MinLengthConstraint createTestSubject() {
11                 return new MinLengthConstraint(null);
12         }
13
14         
15
16
17         
18         @Test
19         public void testGetMinLength() throws Exception {
20                 MinLengthConstraint testSubject;
21                 Integer result;
22
23                 // default test
24                 testSubject = createTestSubject();
25                 result = testSubject.getMinLength();
26         }
27
28         
29         @Test
30         public void testSetMinLength() throws Exception {
31                 MinLengthConstraint testSubject;
32                 Integer minLength = 0;
33
34                 // default test
35                 testSubject = createTestSubject();
36                 testSubject.setMinLength(minLength);
37         }
38 }