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.model.FrameworkMethod;
20import org.junit.runners.model.InitializationError;
21import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
2223import java.util.List;
2425/**26 * @author Eric27 */28publicclassArchivaSpringJUnit4ClassRunner29extends SpringJUnit4ClassRunner
30 {
3132publicArchivaSpringJUnit4ClassRunner( Class<?> clazz )
33throws InitializationError
34 {
35super( clazz );
36 }
3738 @Override
39protected List<FrameworkMethod> computeTestMethods()
40 {
41return ListGenerator.getShuffleList( super.computeTestMethods() );
42 }
434445 }