summaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/cassandra/schema/SdcSchemaUtilsTest.java
blob: f4844a9800519b35267bd2580b87aa4519f998e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package org.openecomp.sdc.be.dao.cassandra.schema;

import javax.annotation.Generated;

import org.junit.Test;

import com.datastax.driver.core.Cluster;


public class SdcSchemaUtilsTest {

	private SdcSchemaUtils createTestSubject() {
		return new SdcSchemaUtils();
	}

	


	
	@Test
	public void testExecuteStatement() throws Exception {
		String statement = "";
		boolean result;

		// default test
		result = SdcSchemaUtils.executeStatement(statement);
	}

	
	@Test
	public void testExecuteStatements() throws Exception {
		String[] statements = new String[] { "" };
		boolean result;

		// default test
		result = SdcSchemaUtils.executeStatements(statements);
	}
}