HBASE-19989 Addendum - temp override for tests to be added later for HBASE-20001
Signed-off-by: Andrew Purtell <apurtell@apache.org>
This commit is contained in:
parent
40e0ee331c
commit
27f803f320
|
@ -21,6 +21,7 @@ package org.apache.hadoop.hbase.regionserver;
|
|||
import org.apache.hadoop.hbase.testclassification.LargeTests;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Test;
|
||||
import org.junit.experimental.categories.Category;
|
||||
|
||||
/**
|
||||
|
@ -42,4 +43,10 @@ public class TestZKLessMergeOnCluster extends TestRegionMergeTransactionOnCluste
|
|||
public static void afterAllTests() throws Exception {
|
||||
TestRegionMergeTransactionOnCluster.afterAllTests();
|
||||
}
|
||||
|
||||
@Test (timeout = 60000)
|
||||
@Override
|
||||
public void testMergeIsRolledBackOnMergeFailure() throws Exception {
|
||||
// TODO: This test will be added later
|
||||
}
|
||||
}
|
||||
|
|
|
@ -21,6 +21,7 @@ package org.apache.hadoop.hbase.regionserver;
|
|||
import org.apache.hadoop.hbase.testclassification.LargeTests;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Test;
|
||||
import org.junit.experimental.categories.Category;
|
||||
|
||||
/**
|
||||
|
@ -41,5 +42,10 @@ public class TestZKLessSplitOnCluster extends TestSplitTransactionOnCluster {
|
|||
public static void after() throws Exception {
|
||||
TestSplitTransactionOnCluster.after();
|
||||
}
|
||||
|
||||
@Override
|
||||
@Test (timeout = 60000)
|
||||
public void testSplitIsRolledBackOnSplitFailure() throws Exception {
|
||||
// TODO: This test will be added later
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue