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

import javax.annotation.Generated;

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

public class ConstraintUtilTest {

	@Test
	public void testCheckStringType() throws Exception {
		ToscaType propertyType = ToscaType.STRING;

		// default test
		ConstraintUtil.checkStringType(propertyType);
	}

	
	@Test
	public void testCheckComparableType() throws Exception {
		ToscaType propertyType = ToscaType.INTEGER;

		// default test
		ConstraintUtil.checkComparableType(propertyType);
	}

	
	@Test
	public void testConvertToComparable() throws Exception {
		ToscaType propertyType = ToscaType.BOOLEAN;
		String value = "";
		Comparable result;

		// default test
		result = ConstraintUtil.convertToComparable(propertyType, value);
	}

	

}