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:
Michael Stack 2008-02-21 22:31:13 +00:00
parent 8edc162bf6
commit 65bad043eb
2 changed files with 0 additions and 47 deletions

View File

@ -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");
}
}

View File

@ -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;
}
}