We are replacing the usage of Hamcrest assertions with AssertJ all over the project.
In LazyBuilderTest.java, replace any usage of Hamcrest with the AssertJ (org.assertj.core.api.Assertions.assertThat).
should be changed to:
assertThat(result).isEqualTo(10);
assertThat(count).isEqualTo(1);
Hello, can I be assigned this? I've replaced hamcrest with AssertJ.
Most helpful comment
Hello, can I be assigned this? I've replaced hamcrest with AssertJ.