We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b66ce7e commit 034f8a1Copy full SHA for 034f8a1
1 file changed
config/sets/phpunit90.php
@@ -25,5 +25,20 @@
25
'expectExceptionMessageRegExp',
26
'expectExceptionMessageMatches'
27
),
28
+
29
30
+ // @see https://github.com/sebastianbergmann/phpunit/issues/4086
31
+ new MethodCallRename(
32
+ 'PHPUnit\Framework\TestCase',
33
+ 'assertRegExp',
34
+ 'assertMatchesRegularExpression'
35
+ ),
36
37
+ // @see https://github.com/sebastianbergmann/phpunit/issues/4089
38
39
40
+ 'assertNotRegExp',
41
+ 'assertDoesNotMatchRegularExpression'
42
43
]);
44
};
0 commit comments