All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.test.context.junit4.SpringRunner Maven / Gradle / Ivy

There is a newer version: 6.1.6
Show newest version
/*
 * Copyright 2002-2016 the original author or authors.
 *
 * Licensed 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
 *
 *      https://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.springframework.test.context.junit4;

import org.junit.runners.model.InitializationError;

/**
 * {@code SpringRunner} is an alias for the {@link SpringJUnit4ClassRunner}.
 *
 * 

To use this class, simply annotate a JUnit 4 based test class with * {@code @RunWith(SpringRunner.class)}. * *

If you would like to use the Spring TestContext Framework with a runner other than * this one, use {@link org.springframework.test.context.junit4.rules.SpringClassRule} * and {@link org.springframework.test.context.junit4.rules.SpringMethodRule}. * *

NOTE: This class requires JUnit 4.12 or higher. * * @author Sam Brannen * @since 4.3 * @see SpringJUnit4ClassRunner * @see org.springframework.test.context.junit4.rules.SpringClassRule * @see org.springframework.test.context.junit4.rules.SpringMethodRule */ public final class SpringRunner extends SpringJUnit4ClassRunner { /** * Construct a new {@code SpringRunner} and initialize a * {@link org.springframework.test.context.TestContextManager TestContextManager} * to provide Spring testing functionality to standard JUnit 4 tests. * @param clazz the test class to be run * @see #createTestContextManager(Class) */ public SpringRunner(Class clazz) throws InitializationError { super(clazz); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy