summaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/GreaterThanConstraintTest.java
blob: 001b09c5174345ff64c3098f2783f6daa7d657aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package org.openecomp.sdc.be.model.tosca.constraints;

import javax.annotation.Generated;

import org.junit.Test;
import org.openecomp.sdc.be.model.tosca.ToscaType;

public class GreaterThanConstraintTest {

	private GreaterThanConstraint createTestSubject() {
		return new GreaterThanConstraint("");
	}



	

	
	@Test
	public void testGetGreaterThan() throws Exception {
		GreaterThanConstraint testSubject;
		String result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getGreaterThan();
	}

	
	@Test
	public void testSetGreaterThan() throws Exception {
		GreaterThanConstraint testSubject;
		String greaterThan = "";

		// default test
		testSubject = createTestSubject();
		testSubject.setGreaterThan(greaterThan);
	}
}