TetsNG SoftAssert with Hamcrest matcher

戏子无情 提交于 2019-12-04 16:44:32

To the best of my knowledge, you cannot directly blend SoftAssert from TestNG with the hamcrest matcher assertions.

But you can make use of org.assertj.core.api.SoftAssertions within the hamcrest matcher library for trying to do soft assertions.

The javadocs for SoftAssertions has some samples.

For the sake of completeness, I am including the code snippet from the javadocs here.

 @Test
 public void host_dinner_party_where_nobody_dies() {
   Mansion mansion = new Mansion();
   mansion.hostPotentiallyMurderousDinnerParty();
   SoftAssertions softly = new SoftAssertions();
   softly.assertThat(mansion.guests()).as("Living Guests").isEqualTo(7);
   softly.assertThat(mansion.kitchen()).as("Kitchen").isEqualTo("clean");
   softly.assertThat(mansion.library()).as("Library").isEqualTo("clean");
   softly.assertThat(mansion.revolverAmmo()).as("Revolver Ammo").isEqualTo(6);
   softly.assertThat(mansion.candlestick()).as("Candlestick").isEqualTo("pristine");
   softly.assertThat(mansion.colonel()).as("Colonel").isEqualTo("well kempt");
   softly.assertThat(mansion.professor()).as("Professor").isEqualTo("well kempt");
   softly.assertAll();
 }

If you take a look at the SoftAssertions codebase, you would notice that the comments say that its been inspired by Cedric's blog on soft assertions.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!