We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e753f0a commit ed6d47eCopy full SHA for ed6d47e
src/test/java/org/assertj/db/api/SoftAssertions_Test.java
@@ -104,6 +104,7 @@ public void test_soft_assert_changes() {
104
final SoftAssertions softly = new SoftAssertions();
105
softly.assertThat(changes).change().column("var1").hasValues(0);
106
softly.assertThat(changes).change().rowAtStartPoint().changeOfModification().column("var1").hasValues(0);
107
+ softly.assertThat(changes).ofCreationOnTable("test").hasNumberOfChanges(1);
108
109
assertThat(softly.wasSuccess()).isFalse();
110
assertThat(softly.errorsCollected()).hasSize(2);
0 commit comments