无法找到"结果比较" Eclipse Oxygen中的对话框

时间:2017-11-28 16:31:46

标签: eclipse junit5

下面的页面(向下滚动到Assertions副标题)是指一个Results Comparison对话框,用于比较JUnit 5测试的预期和实际输出。我无法找到它。有人能指出我吗?在故障跟踪视图中,有一个"比较实际与预期的测试结果"按钮,但它显示为灰色。

https://www.eclipse.org/community/eclipse_newsletter/2017/october/article5.php

1 个答案:

答案 0 :(得分:0)

在Eclipse Oxygen 4.7.1a 中,执行以下测试时,我只需双击 JUnit中 Failure Trace 面板中的第一行视图,结果比较窗口打开。

@org.junit.jupiter.api.Test
void groupedAssertions() {
    org.junit.jupiter.api.Assertions.assertAll(
        () -> org.junit.jupiter.api.Assertions.assertEquals("Johnny", "John"),
        () -> org.junit.jupiter.api.Assertions.assertEquals("Dep", "Doe")
    );
}