目录
2.1、注解【@Test、@BeforeEach、@BeforeAll、@AfterEach、@AfterAll】
1、Junit 是什么?
JUnit是一个Java语言的单元测试框架。
咱们在自动化测试中,只是浅浅借用了一下junit库中提供的一些方法
2、Junit 的用法
使用Junit,就需要导入依赖:
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>