Raise JUnit coverage asdctool
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / simulator / tenant / OperationalEvnironmentImportHandlerTest.java
1 package org.openecomp.sdc.asdctool.simulator.tenant;
2
3 import org.junit.Test;
4
5 public class OperationalEvnironmentImportHandlerTest {
6
7         @Test
8         public void testExecute() throws Exception {
9                 String fileName = "";
10
11                 // default test
12                 OperationalEvnironmentImportHandler.execute(fileName);
13         }
14
15         @Test
16         public void testGetTableName() throws Exception {
17                 String result;
18
19                 // default test
20                 result = OperationalEvnironmentImportHandler.getTableName();
21         }
22 }