first commit for new repo
[sdc/sdc-titan-cassandra.git] / src / test / java / com / thinkaurelius / titan / graphdb / astyanax / AstyanaxGraphConcurrentTest.java
1 package com.thinkaurelius.titan.graphdb.astyanax;
2
3 import com.thinkaurelius.titan.CassandraStorageSetup;
4 import com.thinkaurelius.titan.diskstorage.configuration.WriteConfiguration;
5 import com.thinkaurelius.titan.graphdb.TitanGraphConcurrentTest;
6 import com.thinkaurelius.titan.testcategory.PerformanceTests;
7
8 import org.junit.BeforeClass;
9 import org.junit.experimental.categories.Category;
10
11 @Category({PerformanceTests.class})
12 public class AstyanaxGraphConcurrentTest extends TitanGraphConcurrentTest {
13
14     @BeforeClass
15     public static void startCassandra() {
16         CassandraStorageSetup.startCleanEmbedded();
17     }
18
19
20     @Override
21     public WriteConfiguration getConfiguration() {
22         return CassandraStorageSetup.getAstyanaxGraphConfiguration(getClass().getSimpleName());
23     }
24 }