HBASE-10697 Convert TestSimpleTotalOrderPartitioner to junit4 test

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1575297 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2014-03-07 15:51:01 +00:00
parent 7cf7efa7cd
commit e2c671183e
1 changed files with 11 additions and 1 deletions

View File

@ -18,21 +18,31 @@
*/ */
package org.apache.hadoop.hbase.mapreduce; package org.apache.hadoop.hbase.mapreduce;
import static org.junit.Assert.assertEquals;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.*; import org.apache.hadoop.hbase.*;
import org.apache.hadoop.hbase.io.ImmutableBytesWritable; import org.apache.hadoop.hbase.io.ImmutableBytesWritable;
import org.apache.hadoop.hbase.util.Bytes; import org.apache.hadoop.hbase.util.Bytes;
import org.junit.experimental.categories.Category; import org.junit.experimental.categories.Category;
import org.junit.Test;
/** /**
* Test of simple partitioner. * Test of simple partitioner.
*/ */
@Category(SmallTests.class) @Category(SmallTests.class)
public class TestSimpleTotalOrderPartitioner extends HBaseTestCase { public class TestSimpleTotalOrderPartitioner {
protected final static HBaseTestingUtility TEST_UTIL = new HBaseTestingUtility();
Configuration conf = TEST_UTIL.getConfiguration();
@Test
public void testSplit() throws Exception { public void testSplit() throws Exception {
String start = "a"; String start = "a";
String end = "{"; String end = "{";
SimpleTotalOrderPartitioner<byte []> p = SimpleTotalOrderPartitioner<byte []> p =
new SimpleTotalOrderPartitioner<byte []>(); new SimpleTotalOrderPartitioner<byte []>();
this.conf.set(SimpleTotalOrderPartitioner.START, start); this.conf.set(SimpleTotalOrderPartitioner.START, start);
this.conf.set(SimpleTotalOrderPartitioner.END, end); this.conf.set(SimpleTotalOrderPartitioner.END, end);
p.setConf(this.conf); p.setConf(this.conf);