package org.openecomp.sdc.be.dao.cassandra.schema.tables; import java.util.List; import java.util.Map; import javax.annotation.Generated; import org.apache.commons.lang3.tuple.ImmutablePair; import org.junit.Test; import com.datastax.driver.core.DataType; public class SdcSchemaFilesTableDescriptionTest { private SdcSchemaFilesTableDescription createTestSubject() { return new SdcSchemaFilesTableDescription(); } @Test public void testPrimaryKeys() throws Exception { SdcSchemaFilesTableDescription testSubject; List> result; // default test testSubject = createTestSubject(); result = testSubject.primaryKeys(); } @Test public void testClusteringKeys() throws Exception { SdcSchemaFilesTableDescription testSubject; List> result; // default test testSubject = createTestSubject(); result = testSubject.clusteringKeys(); } @Test public void testGetColumnDescription() throws Exception { SdcSchemaFilesTableDescription testSubject; Map> result; // default test testSubject = createTestSubject(); result = testSubject.getColumnDescription(); } @Test public void testGetKeyspace() throws Exception { SdcSchemaFilesTableDescription testSubject; String result; // default test testSubject = createTestSubject(); result = testSubject.getKeyspace(); } @Test public void testGetTableName() throws Exception { SdcSchemaFilesTableDescription testSubject; String result; // default test testSubject = createTestSubject(); result = testSubject.getTableName(); } }