summaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/cassandra/schema/TableTest.java
blob: b2fdc011f67265b44eb9cbcf8f9c377a69043c2b (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.be.dao.cassandra.schema;

import org.junit.Test;


public class TableTest {

	private Table createTestSubject() {
		return  Table.ARTIFACT;
	}

	
	@Test
	public void testGetTableDescription() throws Exception {
		Table testSubject;
		ITableDescription result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getTableDescription();
	}
}