There's no reason to use literal boolean values in assertions. Doing so is at best confusing for maintainers, and at worst a bug.

Noncompliant Code Example

Assert.assertTrue(true);  // Noncompliant
assertThat(true).isTrue(); // Noncompliant