a9c87f7f61346e47b8866c9cfd83963e35d37c65
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / tosca / ToscaUtilsTest.java
1 package org.openecomp.sdc.be.tosca;
2
3 import java.util.List;
4 import java.util.Map;
5
6 import org.junit.Test;
7 import org.openecomp.sdc.be.model.Component;
8
9 import com.datastax.driver.core.UserType.Field;
10
11 public class ToscaUtilsTest {
12
13         private ToscaUtils createTestSubject() {
14                 return new ToscaUtils();
15         }
16
17         
18         @Test
19         public void testIsAtomicType() throws Exception {
20                 Component component = null;
21                 boolean result;
22
23                 // default test
24         }
25
26         
27         @Test
28         public void testIsComplexVfc() throws Exception {
29                 Component component = null;
30                 boolean result;
31
32                 // default test
33         }
34
35         
36         @Test
37         public void testObjectToMap() throws Exception {
38                 Object objectToConvert = null;
39                 Class clazz = null;
40                 Map<String, Object> result;
41
42                 // default test
43         }
44
45         
46         @Test
47         public void testGetAllFields() throws Exception {
48                 List<Field> fields = null;
49                 Class<?> type = null;
50                 List<Field> result;
51
52                 // default test
53         }
54 }