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