Add unit tests using SpringBoot

Add unit tests using SpringBoot,第1张

Add unit tests using SpringBoot 添加maven dependency

	org.springframework.boot
	spring-boot-starter-test
	test

spring boot中集成了junit测试

Sample:
import org.springframework.boot.test.context.SpringBootTest;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;

@SpringBootTest(classes = JmsComponentFactory.class)
class HelloControllerTest {

    @MockBean
    private CamelContext camelContext;
	@Autowired
	private JmsComponentFactory jmsComponentFactory;

	@Test
	void getHello() throws Exception {
		jmsComponentFactory.creat(camelContext);
		assertEquals("test", camelContext.getContext());
	}
}
@WebMvcTest

创建 web层 上下文(web layers of the context);Spring Boot 自动尝试定位入口类;
使用 @SpringBootTest 创建 ApplicationContext

@SpringBootTest

创建整个应用程序上下文(application context);Spring Boot 自动尝试定位入口类;
如何定义测试类的application context?

在默认情况下开始在测试类的当前包中搜索,然后在包结构中向上搜索,寻找用 @SpringBootConfiguration 注解的类,然后从中读取配置以创建应用程序上下文。这个类通常是我们的主要应用程序类,因为 @SpringBootApplication注解包括 @SpringBootConfiguration 注解。 将加载application context所需要组件类作为@SpringBootTest(classes=xxxx.class)的classes参数传入 JUnit5和JUnit4区别

差别比较大,集成方式有不同,无需自行安装junit。
对于Junit4而言,所有的测试方法应当是public声明的,而Junit5不用,不同版本的@Test的类是不同的:

Junit4: org.junit.Test
Junit5: org.junit.jupiter.api.Test

相比Junit4而言,5添加了新的一些注解,但是常用的注解还是相同的,主要有以下:

注解Description@Test写在一个测试类中的测试方法中的元注解,也就是说,在每一个单元测试方法上都应加上它才会生效@ParameterizedTest参数化测试,就是在你的测试方法执行时,自动添加一些参数@RepeatedTest重复此测试方法@TestFactory动态测试的工厂方法@TestTemplate测试模板@TestMethodOrder测试方法的执行顺序,默认是按照代码的前后顺序执行的@DisplayName自定义测试方法的名称显示@DisplayNameGeneration自定义名称生成器@BeforeEach在Junit4中,这个注解叫@Before。就是会在每一个测试方法执行前都会执行的方法,包括@Test, @RepeatedTest, @ParameterizedTest,或者 @TestFactory注解的方法@AfterEach和上边很相似,在Junit4中,这个注解叫@After。就是会在每一个测试方法执行之后都会执行的方法,包括@Test, @RepeatedTest, @ParameterizedTest, 或者@TestFactory注解的方法.@BeforeAll在当前测试类中的方法执行前执行,只会执行一次,在Junit4中是@BeforeClass@AfterAll在当前测试类中的所有测试方法执行完之后执行,只会执行一次,在Junit4中是@AfterClass@Nested表示一个非静态的测试方法,也就是说@BeforeAll和@AfterAll对此方法无效,如果单纯地执行此方法,并不会触发这个类中的@BeforeAll和@AfterAll方法@Tag自定义tag,就是可以自定义一个属于自己的@Test一样功能的注解@Disabled表明此方法不可用,并不会执行,在JUnit4中的@Ignore@Timeout设定方法执行的超时时间,如果超过,就会抛出异常

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5719199.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-18
下一篇 2022-12-18

发表评论

登录后才能评论

评论列表(0条)

保存