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

top.lshaci.framework.test.SpringBaseTest Maven / Gradle / Ivy

The newest version!
package top.lshaci.framework.test;

import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

/**
 * Base Spring Test
 *
 * @author lshaci
 * @since 0.0.1
 *
 * @param  The test bean type
 */
@SpringBootTest
@RunWith(SpringRunner.class)
public abstract class SpringBaseTest {

    @Autowired
    protected B bean;
}