SLIDER-270 rename test so that TestClusterFlex\* is a wildcard for all flex tests
Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/ae4d0734 Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/ae4d0734 Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/ae4d0734 Branch: refs/heads/feature/SLIDER-151_REST_API Commit: ae4d07340b0c0fe54b3dc75e58744393d5949d31 Parents: 34c00e8 Author: Steve Loughran <ste...@apache.org> Authored: Tue Aug 5 21:06:54 2014 +0100 Committer: Steve Loughran <ste...@apache.org> Committed: Tue Aug 5 21:06:54 2014 +0100 ---------------------------------------------------------------------- .../TestClusterFlexHMasterFlex1To2.groovy | 45 ++++++++++++++++++++ .../flexing/TestHMasterFlex1To2.groovy | 45 -------------------- 2 files changed, 45 insertions(+), 45 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/ae4d0734/slider-providers/hbase/slider-hbase-provider/src/test/groovy/org/apache/slider/providers/hbase/minicluster/flexing/TestClusterFlexHMasterFlex1To2.groovy ---------------------------------------------------------------------- diff --git a/slider-providers/hbase/slider-hbase-provider/src/test/groovy/org/apache/slider/providers/hbase/minicluster/flexing/TestClusterFlexHMasterFlex1To2.groovy b/slider-providers/hbase/slider-hbase-provider/src/test/groovy/org/apache/slider/providers/hbase/minicluster/flexing/TestClusterFlexHMasterFlex1To2.groovy new file mode 100644 index 0000000..298f40f --- /dev/null +++ b/slider-providers/hbase/slider-hbase-provider/src/test/groovy/org/apache/slider/providers/hbase/minicluster/flexing/TestClusterFlexHMasterFlex1To2.groovy @@ -0,0 +1,45 @@ +/* + * 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.slider.providers.hbase.minicluster.flexing + +import groovy.transform.CompileStatic +import groovy.util.logging.Slf4j +import org.apache.slider.providers.hbase.minicluster.HBaseMiniClusterTestBase +import org.junit.Test + +/** + * Create a master against the File:// fs + */ +@CompileStatic +@Slf4j +class TestClusterFlexHMasterFlex1To2 extends HBaseMiniClusterTestBase { + + @Test + public void testClusterMasterFlex1To2() throws Throwable { + assert flexHBaseClusterTestRun( + "", + 1, + 2, + 1, + 1, + true) + } + + +} http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/ae4d0734/slider-providers/hbase/slider-hbase-provider/src/test/groovy/org/apache/slider/providers/hbase/minicluster/flexing/TestHMasterFlex1To2.groovy ---------------------------------------------------------------------- diff --git a/slider-providers/hbase/slider-hbase-provider/src/test/groovy/org/apache/slider/providers/hbase/minicluster/flexing/TestHMasterFlex1To2.groovy b/slider-providers/hbase/slider-hbase-provider/src/test/groovy/org/apache/slider/providers/hbase/minicluster/flexing/TestHMasterFlex1To2.groovy deleted file mode 100644 index ca26572..0000000 --- a/slider-providers/hbase/slider-hbase-provider/src/test/groovy/org/apache/slider/providers/hbase/minicluster/flexing/TestHMasterFlex1To2.groovy +++ /dev/null @@ -1,45 +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.slider.providers.hbase.minicluster.flexing - -import groovy.transform.CompileStatic -import groovy.util.logging.Slf4j -import org.apache.slider.providers.hbase.minicluster.HBaseMiniClusterTestBase -import org.junit.Test - -/** - * Create a master against the File:// fs - */ -@CompileStatic -@Slf4j -class TestHMasterFlex1To2 extends HBaseMiniClusterTestBase { - - @Test - public void testClusterFlex1To2() throws Throwable { - assert flexHBaseClusterTestRun( - "", - 1, - 2, - 1, - 1, - true) - } - - -}