之间的主要区别是什么?
@Before
和@BeforeClass
@BeforeEach
和@BeforeAll
@After
和@AfterClass
根据以下情况使用的JUnit Api @Before
:
编写测试时,通常会发现多个测试需要在运行之前创建类似的对象。
@BeforeClass
可用于建立数据库连接。但是@Before
无法做同样的事情吗?
答案 0 :(得分:548)
标记为@Before
的代码在每次测试之前执行,而@BeforeClass
在整个测试夹具之前运行一次。如果您的测试类有十个测试,@Before
代码将被执行十次,但@BeforeClass
将只执行一次。
通常,当多个测试需要共享相同的计算昂贵的设置代码时,您使用@BeforeClass
。建立数据库连接属于此类别。您可以将代码从@BeforeClass
移至@Before
,但您的测试运行可能需要更长时间。请注意,标记为@BeforeClass
的代码作为静态初始化程序运行,因此它将在创建测试夹具的类实例之前运行。
在JUnit 5中,标记@BeforeEach
和@BeforeAll
是JUnit 4中@Before
和@BeforeClass
的等价物。它们的名称更具说明性当它们运行时,松散地解释:“在每次测试之前”和“在所有测试之前”。
答案 1 :(得分:105)
每个注释之间的区别是:
+-------------------------------------------------------------------------------------------------------+
¦ Feature ¦ Junit 4 ¦ Junit 5 ¦
¦--------------------------------------------------------------------------+--------------+-------------¦
¦ Execute before all test methods of the class are executed. ¦ @BeforeClass ¦ @BeforeAll ¦
¦ Used with static method. ¦ ¦ ¦
¦ For example, This method could contain some initialization code ¦ ¦ ¦
¦-------------------------------------------------------------------------------------------------------¦
¦ Execute after all test methods in the current class. ¦ @AfterClass ¦ @AfterAll ¦
¦ Used with static method. ¦ ¦ ¦
¦ For example, This method could contain some cleanup code. ¦ ¦ ¦
¦-------------------------------------------------------------------------------------------------------¦
¦ Execute before each test method. ¦ @Before ¦ @BeforeEach ¦
¦ Used with non-static method. ¦ ¦ ¦
¦ For example, to reinitialize some class attributes used by the methods. ¦ ¦ ¦
¦-------------------------------------------------------------------------------------------------------¦
¦ Execute after each test method. ¦ @After ¦ @AfterEach ¦
¦ Used with non-static method. ¦ ¦ ¦
¦ For example, to roll back database modifications. ¦ ¦ ¦
+-------------------------------------------------------------------------------------------------------+
两个版本中的大多数注释都是相同的,但很少有不同之处。
执行顺序。
虚线框 - >可选注释。
答案 2 :(得分:4)
JUnit中的课前和课前
函数@Before
的注释将在具有@Test
注释的类中的每个测试函数之前执行,而带有@BeforeClass
的函数将仅在所有测试函数之前执行一次。班级。
具有@After
注释的函数将在类中具有@Test
注释的每个测试函数之后执行,但具有@AfterClass
的函数仅在所有测试函数之后执行一次在课堂上。
SampleClass
public class SampleClass {
public String initializeData(){
return "Initialize";
}
public String processDate(){
return "Process";
}
}
SampleTest
public class SampleTest {
private SampleClass sampleClass;
@BeforeClass
public static void beforeClassFunction(){
System.out.println("Before Class");
}
@Before
public void beforeFunction(){
sampleClass=new SampleClass();
System.out.println("Before Function");
}
@After
public void afterFunction(){
System.out.println("After Function");
}
@AfterClass
public static void afterClassFunction(){
System.out.println("After Class");
}
@Test
public void initializeTest(){
Assert.assertEquals("Initailization check", "Initialize", sampleClass.initializeData() );
}
@Test
public void processTest(){
Assert.assertEquals("Process check", "Process", sampleClass.processDate() );
}
}
输出
Before Class
Before Function
After Function
Before Function
After Function
After Class
在Junit 5中
@Before = @BeforeEach
@BeforeClass = @BeforeAll
@After = @AfterEach
@AfterClass = @AfterAll
答案 3 :(得分:2)
@Before
(JUnit4) -> @BeforeEach
(JUnit5) - 方法在每次测试之前调用
@After
(JUnit4) -> @AfterEach
(JUnit5) - 每次测试后调用方法
@BeforeClass
(JUnit4) -> @BeforeAll
(JUnit5) - static 方法在执行此类中的所有测试之前 被调用。启动服务器、读取文件、建立数据库连接等可能是一项大型任务。
@AfterClass
(JUnit4) -> @AfterAll
(JUnit5) - static 方法在执行该类中的所有测试后 被调用。 >
答案 4 :(得分:1)
import org.junit.Assert
import org.junit.Before
import org.junit.BeforeClass
import org.junit.Test
class FeatureTest {
companion object {
private lateinit var heavyFeature: HeavyFeature
@BeforeClass
@JvmStatic
fun beforeHeavy() {
heavyFeature = HeavyFeature()
}
}
private lateinit var feature: Feature
@Before
fun before() {
feature = Feature()
}
@Test
fun testCool() {
Assert.assertTrue(heavyFeature.cool())
Assert.assertTrue(feature.cool())
}
@Test
fun testWow() {
Assert.assertTrue(heavyFeature.wow())
Assert.assertTrue(feature.wow())
}
}
与
相同import org.junit.Assert
import org.junit.Test
class FeatureTest {
companion object {
private val heavyFeature = HeavyFeature()
}
private val feature = Feature()
@Test
fun testCool() {
Assert.assertTrue(heavyFeature.cool())
Assert.assertTrue(feature.cool())
}
@Test
fun testWow() {
Assert.assertTrue(heavyFeature.wow())
Assert.assertTrue(feature.wow())
}
}
答案 5 :(得分:0)
所有这些注解的基本区别如下-
所有这些注释以及用法都在 Codingeek - Junit5 Test Lifecycle
上定义