001b09c5174345ff64c3098f2783f6daa7d657aa
[sdc.git] /
1 package org.openecomp.sdc.be.model.tosca.constraints;
2
3 import javax.annotation.Generated;
4
5 import org.junit.Test;
6 import org.openecomp.sdc.be.model.tosca.ToscaType;
7
8 public class GreaterThanConstraintTest {
9
10         private GreaterThanConstraint createTestSubject() {
11                 return new GreaterThanConstraint("");
12         }
13
14
15
16         
17
18         
19         @Test
20         public void testGetGreaterThan() throws Exception {
21                 GreaterThanConstraint testSubject;
22                 String result;
23
24                 // default test
25                 testSubject = createTestSubject();
26                 result = testSubject.getGreaterThan();
27         }
28
29         
30         @Test
31         public void testSetGreaterThan() throws Exception {
32                 GreaterThanConstraint testSubject;
33                 String greaterThan = "";
34
35                 // default test
36                 testSubject = createTestSubject();
37                 testSubject.setGreaterThan(greaterThan);
38         }
39 }