aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/tosca/ToscaUtilsTest.java
blob: a9c87f7f61346e47b8866c9cfd83963e35d37c65 (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
50
51
52
53
54
package org.openecomp.sdc.be.tosca;

import java.util.List;
import java.util.Map;

import org.junit.Test;
import org.openecomp.sdc.be.model.Component;

import com.datastax.driver.core.UserType.Field;

public class ToscaUtilsTest {

	private ToscaUtils createTestSubject() {
		return new ToscaUtils();
	}

	
	@Test
	public void testIsAtomicType() throws Exception {
		Component component = null;
		boolean result;

		// default test
	}

	
	@Test
	public void testIsComplexVfc() throws Exception {
		Component component = null;
		boolean result;

		// default test
	}

	
	@Test
	public void testObjectToMap() throws Exception {
		Object objectToConvert = null;
		Class clazz = null;
		Map<String, Object> result;

		// default test
	}

	
	@Test
	public void testGetAllFields() throws Exception {
		List<Field> fields = null;
		Class<?> type = null;
		List<Field> result;

		// default test
	}
}