Refactoring Consolidation Service
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / tosca / constraints / GreaterThanConstraintTest.java
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 }