From 789f625bf32454f133601560ebc86b6aecec1936 Mon Sep 17 00:00:00 2001 From: Jonathan Ellis Date: Sat, 11 Dec 2010 06:28:33 +0000 Subject: [PATCH] make ECST extend CleanupHelper patch by jbellis git-svn-id: https://svn.apache.org/repos/asf/cassandra/branches/cassandra-0.7@1044572 13f79535-47bb-0310-9956-ffa450edef68 --- .../cassandra/service/EmbeddedCassandraServiceTest.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test/unit/org/apache/cassandra/service/EmbeddedCassandraServiceTest.java b/test/unit/org/apache/cassandra/service/EmbeddedCassandraServiceTest.java index 4143901832..c133a85b33 100644 --- a/test/unit/org/apache/cassandra/service/EmbeddedCassandraServiceTest.java +++ b/test/unit/org/apache/cassandra/service/EmbeddedCassandraServiceTest.java @@ -25,11 +25,13 @@ import com.google.common.base.Charsets; import org.junit.BeforeClass; import org.junit.Test; +import org.apache.cassandra.CleanupHelper; import org.apache.cassandra.config.CFMetaData; import org.apache.cassandra.config.ConfigurationException; import org.apache.cassandra.config.DatabaseDescriptor; import org.apache.cassandra.config.KSMetaData; import org.apache.cassandra.thrift.*; +import org.apache.cassandra.utils.ByteBufferUtil; import org.apache.thrift.TException; import org.apache.thrift.protocol.TBinaryProtocol; import org.apache.thrift.protocol.TProtocol; @@ -40,17 +42,14 @@ import org.apache.thrift.transport.TTransportException; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; -import org.apache.cassandra.utils.ByteBufferUtil; /** * Example how to use an embedded cassandra service. * * Tests connect to localhost:9160 when the embedded server is running. * - * @author Ran Tavory (rantav@gmail.com) - * */ -public class EmbeddedCassandraServiceTest +public class EmbeddedCassandraServiceTest extends CleanupHelper { private static EmbeddedCassandraService cassandra;