first commit for new repo
[sdc/sdc-titan-cassandra.git] / src / test / java / com / thinkaurelius / titan / graphdb / thrift / ThriftPartitionGraphTest.java
1 package com.thinkaurelius.titan.graphdb.thrift;
2
3 import com.thinkaurelius.titan.CassandraStorageSetup;
4 import com.thinkaurelius.titan.diskstorage.configuration.WriteConfiguration;
5 import com.thinkaurelius.titan.graphdb.TitanOperationCountingTest;
6 import com.thinkaurelius.titan.graphdb.TitanPartitionGraphTest;
7 import org.junit.BeforeClass;
8
9 public class ThriftPartitionGraphTest extends TitanPartitionGraphTest {
10
11     @BeforeClass
12     public static void beforeClass() {
13         CassandraStorageSetup.startCleanEmbedded();
14     }
15
16     @Override
17     public WriteConfiguration getBaseConfiguration() {
18         return CassandraStorageSetup.getCassandraThriftGraphConfiguration(getClass().getSimpleName());
19     }
20
21 }