summaryrefslogtreecommitdiffstats
path: root/asdctool/src/test/java/org/openecomp/sdc/asdctool/simulator/tenant/OperationalEvnironmentImportHandlerTest.java
blob: cca0327f3f09b84b6498bb323fd4fb0ff83b6d0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.openecomp.sdc.asdctool.simulator.tenant;

import org.junit.Test;

public class OperationalEvnironmentImportHandlerTest {

	@Test
	public void testExecute() throws Exception {
		String fileName = "";

		// default test
		OperationalEvnironmentImportHandler.execute(fileName);
	}

	@Test
	public void testGetTableName() throws Exception {
		String result;

		// default test
		result = OperationalEvnironmentImportHandler.getTableName();
	}
}