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

import javax.annotation.Generated;

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();
	}
}