A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/pmd/pmd/issues/1435 below:

Support AssertJ soft assertions · Issue #1435 · pmd/pmd · GitHub

Rule: JUnitTestsShouldIncludeAssert

Description:

Using Soft Assertions shouldn't trigger the rule, since these are assertions, too.

Code Sample demonstrating the issue:

import org.assertj.core.api.SoftAssertions;
import org.junit.jupiter.api.Test;
class FooTest {
    @Test
    void testFoo() {
        var softly = new SoftAssertions();
        softly.assertThat("doesn't matter").isEqualTo("doesn't matter");
        softly.assertAll();
    }

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4