D test/org/apache/hadoop/hbase/TestBrokenTest.java
D test/org/apache/hadoop/hbase/TestSomething.java Back out tests that were added just to see what reporting looked like up on hudson. git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@630032 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8edc162bf6
commit
65bad043eb
|
@ -1,20 +0,0 @@
|
||||||
package org.apache.hadoop.hbase;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
|
||||||
|
|
||||||
public class TestBrokenTest extends TestCase {
|
|
||||||
|
|
||||||
protected void setUp() throws Exception {
|
|
||||||
super.setUp();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void tearDown() throws Exception {
|
|
||||||
super.tearDown();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testname() throws Exception {
|
|
||||||
throw new IOException("I'm broken");
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
package org.apache.hadoop.hbase;
|
|
||||||
|
|
||||||
import org.apache.hadoop.hbase.client.TestBatchUpdate;
|
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
|
||||||
import junit.framework.TestSuite;
|
|
||||||
|
|
||||||
public class TestSomething extends TestCase {
|
|
||||||
|
|
||||||
protected void setUp() throws Exception {
|
|
||||||
super.setUp();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void tearDown() throws Exception {
|
|
||||||
super.tearDown();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static junit.framework.Test suite() {
|
|
||||||
TestSuite suite = new TestSuite();
|
|
||||||
suite.addTestSuite(TestBatchUpdate.class);
|
|
||||||
suite.addTestSuite(TestHMemcache.class);
|
|
||||||
suite.addTestSuite(TestBatchUpdate.class);
|
|
||||||
suite.addTestSuite(TestBrokenTest.class);
|
|
||||||
suite.addTestSuite(TestToString.class);
|
|
||||||
return suite;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue