diff --git a/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/ClientTests.java b/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/ClientTests.java index c109e2e978f..c2510efb026 100644 --- a/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/ClientTests.java +++ b/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/ClientTests.java @@ -1,5 +1,4 @@ /* - * * 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 @@ -17,9 +16,12 @@ * limitations under the License. */ +package org.apache.hadoop.hbase.testclassification; + /** - * Tag a test as related to the client, This tests the hbase-client package and all of the client + * Tag a test as related to the client. This tests the hbase-client package and all of the client * tests in hbase-server. + * * @see org.apache.hadoop.hbase.testclassification.ClientTests * @see org.apache.hadoop.hbase.testclassification.CoprocessorTests * @see org.apache.hadoop.hbase.testclassification.FilterTests @@ -35,7 +37,5 @@ * @see org.apache.hadoop.hbase.testclassification.VerySlowRegionServerTests * @see org.apache.hadoop.hbase.testclassification.VerySlowMapReduceTests */ -package org.apache.hadoop.hbase.testclassification; - public interface ClientTests { } diff --git a/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/CoprocessorTests.java b/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/CoprocessorTests.java index ff659954462..4341becbd68 100644 --- a/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/CoprocessorTests.java +++ b/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/CoprocessorTests.java @@ -1,5 +1,4 @@ /* - * * 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 @@ -17,8 +16,11 @@ * limitations under the License. */ +package org.apache.hadoop.hbase.testclassification; + /** * Tag a test as related to coprocessors. + * * @see org.apache.hadoop.hbase.testclassification.ClientTests * @see org.apache.hadoop.hbase.testclassification.CoprocessorTests * @see org.apache.hadoop.hbase.testclassification.FilterTests @@ -34,8 +36,5 @@ * @see org.apache.hadoop.hbase.testclassification.VerySlowRegionServerTests * @see org.apache.hadoop.hbase.testclassification.VerySlowMapReduceTests */ -package org.apache.hadoop.hbase.testclassification; - - public interface CoprocessorTests { } diff --git a/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/FilterTests.java b/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/FilterTests.java index b4e9c35f36c..ebda1244ccc 100644 --- a/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/FilterTests.java +++ b/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/FilterTests.java @@ -1,5 +1,4 @@ /* - * * 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 @@ -17,8 +16,11 @@ * limitations under the License. */ +package org.apache.hadoop.hbase.testclassification; + /** - * Tag a test as related to the filter package. + * Tag a test as related to the {@link org.apache.hadoop.hbase.filter} package. + * * @see org.apache.hadoop.hbase.testclassification.ClientTests * @see org.apache.hadoop.hbase.testclassification.CoprocessorTests * @see org.apache.hadoop.hbase.testclassification.FilterTests @@ -34,8 +36,5 @@ * @see org.apache.hadoop.hbase.testclassification.VerySlowRegionServerTests * @see org.apache.hadoop.hbase.testclassification.VerySlowMapReduceTests */ -package org.apache.hadoop.hbase.testclassification; - - public interface FilterTests { } diff --git a/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/FlakeyTests.java b/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/FlakeyTests.java index ddd92b1bd7b..22fbc1b724f 100644 --- a/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/FlakeyTests.java +++ b/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/FlakeyTests.java @@ -1,5 +1,4 @@ /* - * * 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 @@ -17,8 +16,11 @@ * limitations under the License. */ +package org.apache.hadoop.hbase.testclassification; + /** * Tag a test as failing commonly on public build infrastructure. + * * @see org.apache.hadoop.hbase.testclassification.ClientTests * @see org.apache.hadoop.hbase.testclassification.CoprocessorTests * @see org.apache.hadoop.hbase.testclassification.FilterTests @@ -34,7 +36,5 @@ * @see org.apache.hadoop.hbase.testclassification.VerySlowRegionServerTests * @see org.apache.hadoop.hbase.testclassification.VerySlowMapReduceTests */ -package org.apache.hadoop.hbase.testclassification; - public interface FlakeyTests { } diff --git a/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/IOTests.java b/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/IOTests.java index cf8bffabc2d..f3ab8b56c86 100644 --- a/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/IOTests.java +++ b/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/IOTests.java @@ -1,5 +1,4 @@ /* - * * 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 @@ -17,8 +16,12 @@ * limitations under the License. */ +package org.apache.hadoop.hbase.testclassification; + /** - * Tag a test as related to the io package. Things like HFile and the like. + * Tag a test as related to the {@link org.apache.hadoop.hbase.io} package. Things like HFile and + * the like. + * * @see org.apache.hadoop.hbase.testclassification.ClientTests * @see org.apache.hadoop.hbase.testclassification.CoprocessorTests * @see org.apache.hadoop.hbase.testclassification.FilterTests @@ -34,8 +37,5 @@ * @see org.apache.hadoop.hbase.testclassification.VerySlowRegionServerTests * @see org.apache.hadoop.hbase.testclassification.VerySlowMapReduceTests */ -package org.apache.hadoop.hbase.testclassification; - - public interface IOTests { } diff --git a/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/IntegrationTests.java b/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/IntegrationTests.java index ce6af67eec0..6bc712e270c 100644 --- a/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/IntegrationTests.java +++ b/hbase-annotations/src/test/java/org/apache/hadoop/hbase/testclassification/IntegrationTests.java @@ -1,4 +1,4 @@ -/** +/* * 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 @@ -20,7 +20,8 @@ package org.apache.hadoop.hbase.testclassification; /** * Tag a test as 'integration/system' test, meaning that the test class has the following - * characteristics: