@ExtendWith(SoftAssertionsExtension.class)
public class SoftAssertionsAssertJTest {
@Test
public void test(SoftAssertions softly) {
//arange
[arrange your vars]
//act
[execute]
//assert
softly.assertThat(var1).as("variable1 is wrong").isEqualTo("expected value");
...
}
}
1条答案
按热度按时间kwvwclae1#
您可以使用SoftAssertions规则来执行此操作。