Recipe Name:
Use AssertJ's isFalse()
Description:
Can be replaced with AssertJ style assertions
Level:
warning
Language:
  • java
Tags:
  • AssertJ
  • TestNG
Recipe
id: scw:assertj:junit-assert-false
version: 10
metadata:
  name: Use AssertJ's isFalse()
  shortDescription: Can be replaced with AssertJ style assertions
  level: warning
  language: java
  enabled: true
  tags: AssertJ; TestNG
search:
  methodcall:
    args:
      1:
        anyOf:
        - type: java.lang.Boolean
        - type: boolean
    argCount: 1
    name: assertFalse
    anyOf:
    - type: org.junit.Assert
    - type: junit.framework.TestCase
    - type: junit.framework.Assert
    - type: org.junit.jupiter.api.Assertions
    - type: org.testng.AssertJUnit
availableFixes:
- doStaticImports: true
  name: Change to assertThat(actual).isFalse()
  actions:
  - rewrite:
      to: org.assertj.core.api.Assertions.assertThat({{{ arguments.0 }}}).isFalse()