1package org.apache.archiva.test.utils;
23/*4 * Copyright 2012 The Apache Software Foundation.5 *6 * Licensed under the Apache License, Version 2.0 (the "License");7 * you may not use this file except in compliance with the License.8 * You may obtain a copy of the License at9 *10 * http://www.apache.org/licenses/LICENSE-2.011 *12 * Unless required by applicable law or agreed to in writing, software13 * distributed under the License is distributed on an "AS IS" BASIS,14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.15 * See the License for the specific language governing permissions and16 * limitations under the License.17 */1819import org.junit.runners.BlockJUnit4ClassRunner;
20import org.junit.runners.model.FrameworkMethod;
21import org.junit.runners.model.InitializationError;
2223import java.util.List;
2425/**26 * @author Eric27 */28publicclassArchivaBlockJUnit4ClassRunner29extends BlockJUnit4ClassRunner
30 {
3132publicArchivaBlockJUnit4ClassRunner( Class<?> klass )
33throws InitializationError
34 {
35super( klass );
36 }
3738 @Override
39protected List<FrameworkMethod> computeTestMethods()
40 {
41return ListGenerator.getShuffleList( super.computeTestMethods() );
42 }
43 }