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

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

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

	

}