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

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

There is a newer version: 1.1.0
Show 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
 */
@RunWith(SpringRunner.class)
@SpringBootTest
public abstract class SpringBaseTest {

    @Autowired
    protected B bean;
}