Skip to content

v2.1.0

Compare
Choose a tag to compare
@Lemick Lemick released this 28 Aug 22:08
· 3 commits to main since this release
  • Add programmatic assertion API

Example:

@Test
void test() {
    QueryAssertions.assertInsertCount(2, () -> {
        BlogPost post_1 = new BlogPost("Blog post 1");
        post_1.addComment(new PostComment("Good article"));
        blogPostRepository.save(post_1);
    });
}