Merge "add unit tests to components"
[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 javax.annotation.Generated;
7
8 import org.junit.Test;
9 import org.openecomp.sdc.be.model.Component;
10
11 import com.datastax.driver.core.UserType.Field;
12
13 public class ToscaUtilsTest {
14
15         private ToscaUtils createTestSubject() {
16                 return new ToscaUtils();
17         }
18
19         
20         @Test
21         public void testIsAtomicType() throws Exception {
22                 Component component = null;
23                 boolean result;
24
25                 // default test
26         }
27
28         
29         @Test
30         public void testIsComplexVfc() throws Exception {
31                 Component component = null;
32                 boolean result;
33
34                 // default test
35         }
36
37         
38         @Test
39         public void testObjectToMap() throws Exception {
40                 Object objectToConvert = null;
41                 Class clazz = null;
42                 Map<String, Object> result;
43
44                 // default test
45         }
46
47         
48         @Test
49         public void testGetAllFields() throws Exception {
50                 List<Field> fields = null;
51                 Class<?> type = null;
52                 List<Field> result;
53
54                 // default test
55         }
56 }