
top.lshaci.framework.test.SpringBaseTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework-test Show documentation
Show all versions of framework-test Show documentation
framework base spring test
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;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy