PhpStorm
 
Get PhpStorm
You are viewing the documentation for an earlier version of PhpStorm.

Code Inspection: Assertion can be replaced with 'fail'

Last modified: 16 May 2022

Reports the assertTrue() / assertFalse() calls with the false / true arguments in PHPUnit tests. Such usages can be replaced with fail() calls to indicate that a test is expected to fail.

In the following example, the false condition is provided for the assertTrue method to indicate that a test is expected to fail. After the quick-fix is applied, the more specific fail() method is used instead.