是否可以将一个 JUnit 测试的结果/输出与同一类中的另一个测试进行比较?
下面是算法
Public class CompareResult {
@Before
{
open driver
}
@After
{
quit driver
}
@Test
{
Connect to 1st website
Enter data and calculate value
Store the value in Variable A
}
@Test
{
Connect to 2nd website
Enter data and calculate value
Store the value in Variable B
}
@Test
{
Compare A and B
}
}
当我在第三个@Test 中显示变量 A 和 B 的值时,它为 NULL。我们不能在一个@Test 中将变量用于JUnit 中的另一个@Test 吗?请告知,我是 JUnit 的新手。