HBASE-1034 Remove useless TestToString unit test
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@721418 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b26771d1b2
commit
b23d150686
|
@ -144,6 +144,7 @@ Release 0.19.0 - Unreleased
|
|||
HBASE-1026 Tests in mapred are failing
|
||||
HBASE-1020 Regionserver OOME handler should dump vital stats
|
||||
HBASE-1018 Regionservers should report detailed health to master
|
||||
HBASE-1034 Remove useless TestToString unit test
|
||||
|
||||
NEW FEATURES
|
||||
HBASE-875 Use MurmurHash instead of JenkinsHash [in bloomfilters]
|
||||
|
|
|
@ -1,36 +0,0 @@
|
|||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.hadoop.hbase;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
/**
|
||||
* Tests toString methods.
|
||||
*/
|
||||
public class TestToString extends TestCase {
|
||||
/**
|
||||
* tests toString methods on HSeverAddress, HServerInfo
|
||||
* @throws Exception
|
||||
*/
|
||||
public void testServerInfo() throws Exception {
|
||||
final String hostport = "127.0.0.1:9999";
|
||||
HServerAddress address = new HServerAddress(hostport);
|
||||
assertEquals("HServerAddress toString", address.toString(), hostport);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue