Raise JUnit coverage asdctool
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / simulator / tenant / ImportTableConfigTest.java
1 package org.openecomp.sdc.asdctool.simulator.tenant;
2
3 import org.junit.Test;
4 import org.openecomp.sdc.be.dao.cassandra.CassandraClient;
5 import org.openecomp.sdc.be.dao.cassandra.OperationalEnvironmentDao;
6
7 public class ImportTableConfigTest {
8
9         private ImportTableConfig createTestSubject() {
10                 return new ImportTableConfig();
11         }
12
13         @Test
14         public void testCassandraClient() throws Exception {
15                 ImportTableConfig testSubject;
16                 CassandraClient result;
17
18                 // default test
19                 testSubject = createTestSubject();
20                 result = testSubject.cassandraClient();
21         }
22
23         @Test
24         public void testOperationalEnvironmentDao() throws Exception {
25                 ImportTableConfig testSubject;
26                 OperationalEnvironmentDao result;
27
28                 // default test
29                 testSubject = createTestSubject();
30                 result = testSubject.operationalEnvironmentDao();
31         }
32 }