summaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/ToscaTypeTest.java
blob: 9e6605b8a9a2c851703e35a5e2ab390b0da94373 (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
42
43
44
45
46
47
48
49
package org.openecomp.sdc.be.model.tosca;

import org.junit.Assert;
import org.junit.Test;


public class ToscaTypeTest {

	private ToscaType createTestSubject() {
		return  ToscaType.BOOLEAN;
	}


	
	@Test
	public void testIsValidValue() throws Exception {
		ToscaType testSubject;
		String value = "";
		boolean result;

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


	
	@Test
	public void testConvert() throws Exception {
		ToscaType testSubject;
		String value = "";
		Object result;

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

	
	@Test
	public void testToString() throws Exception {
		ToscaType testSubject;
		String result;

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