public static CassandraUnitTests getInstance() throws Exception {
if (instance == null) {
instance = new CassandraUnitTests();
cassandra = new EmbeddedCassandraService();
cassandra.init();
Thread t = new Thread(cassandra);
t.setDaemon(true);
t.start();
}