aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/GreaterThanConstraintTest.java
blob: 7d959d401638acb76bd18e50bd54eb8343a57905 (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
package org.openecomp.sdc.be.model.tosca.constraints;

import org.junit.Test;

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);
	}
}