HBASE-13731 TestReplicationAdmin should clean up MiniZKCluster resource (Stephen Jiang)

This commit is contained in:
tedyu 2015-05-21 10:27:21 -07:00
parent d16f349a63
commit cb1ef915df
1 changed files with 9 additions and 0 deletions

View File

@ -28,6 +28,7 @@ import org.apache.hadoop.hbase.*;
import org.apache.hadoop.hbase.replication.ReplicationException;
import org.apache.hadoop.hbase.testclassification.ClientTests;
import org.apache.hadoop.hbase.testclassification.MediumTests;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.experimental.categories.Category;
@ -68,6 +69,14 @@ public class TestReplicationAdmin {
admin = new ReplicationAdmin(conf);
}
@AfterClass
public static void tearDownAfterClass() throws Exception {
if (admin != null) {
admin.close();
}
TEST_UTIL.shutdownMiniZKCluster();
}
/**
* Simple testing of adding and removing peers, basically shows that
* all interactions with ZK work