Problem/Motivation
As title
Proposed resolution
Regex for searching: >assert.*\(.*( == | === | != | !== )
example:
- $this->assertTrue($output == $expected, new FormattableMarkup('Token recognized in string %string', ['%string' => $input]));
+ $this->assertEquals($expected, $output, "Token is expected to be replaced in string $input");