HBASE-13409 Add categories to uncategorized tests

This commit is contained in:
Andrew Purtell 2015-04-06 11:02:18 -07:00
parent 057499474c
commit 8c707499ba
2 changed files with 8 additions and 0 deletions

View File

@ -23,13 +23,17 @@ import org.apache.hadoop.hbase.ServerName;
import org.apache.hadoop.hbase.client.backoff.ExponentialClientBackoffPolicy;
import org.apache.hadoop.hbase.client.backoff.ServerStatistics;
import org.apache.hadoop.hbase.protobuf.generated.ClientProtos;
import org.apache.hadoop.hbase.testclassification.ClientTests;
import org.apache.hadoop.hbase.testclassification.SmallTests;
import org.apache.hadoop.hbase.util.Bytes;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.mockito.Mockito;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
@Category({ClientTests.class, SmallTests.class})
public class TestClientExponentialBackoff {
ServerName server = Mockito.mock(ServerName.class);

View File

@ -17,10 +17,14 @@
*/
package org.apache.hadoop.hbase.filter;
import org.apache.hadoop.hbase.testclassification.SmallTests;
import org.apache.hadoop.hbase.util.Bytes;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import static org.junit.Assert.assertEquals;
@Category(SmallTests.class)
public class TestLongComparator {
private long values[] = { Long.MIN_VALUE, -10000000000L, -1000000L, 0L, 1000000L, 10000000000L,
Long.MAX_VALUE };