commit 753a39be67f760a259e94355fe4399f7f8c203f2 Author: stack Date: Mon Dec 21 11:25:14 2015 -0800 test diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/TestBuildsApacheDotOrg.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestBuildsApacheDotOrg.java new file mode 100644 index 0000000..df63a98 --- /dev/null +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestBuildsApacheDotOrg.java @@ -0,0 +1,45 @@ +/** + * Copyright The Apache Software Foundation + * + * 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 org.apache.hadoop.hbase.testclassification.SmallTests; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import org.junit.experimental.categories.Category; + +/** + * Test that does nothing but exercise certain conditions up on builds.apache.org + */ +@Category(SmallTests.class) +public class TestBuildsApacheDotOrg { + @Before + public void setUp() throws Exception { + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void testNPE() { + throw new NullPointerException(); + } +} \ No newline at end of file