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