first commit for new repo
[sdc/sdc-titan-cassandra.git] / src / test / java / com / thinkaurelius / titan / graphdb / embedded / EmbeddedGraphMemoryPerformanceTest.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.TitanGraphPerformanceMemoryTest;
8
9 /**
10  * @author Matthias Broecheler (me@matthiasb.com)
11  */
12
13 public class EmbeddedGraphMemoryPerformanceTest extends TitanGraphPerformanceMemoryTest {
14
15     @BeforeClass
16     public static void startCassandra() {
17         CassandraStorageSetup.startCleanEmbedded();
18     }
19
20     @Override
21     public WriteConfiguration getConfiguration() {
22         return CassandraStorageSetup.getEmbeddedCassandraPartitionGraphConfiguration(getClass().getSimpleName());
23     }
24
25 }