PHPUnit coverage comment must not have parentheses
authorAntoine Musso <hashar@users.mediawiki.org>
Sun, 6 Mar 2011 17:36:42 +0000 (17:36 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Sun, 6 Mar 2011 17:36:42 +0000 (17:36 +0000)
commit16c6730b84531fd24009be0e5dbddecefe11a5f8
tree73c4d6a970ebcd49b3395f7a5b157a3c825cfdb0
parent56a0a92abb16e060a9ef45a57ad5c099329c403e
PHPUnit coverage comment must not have parentheses

Those comments have the format:
 @covers Class::Method

In PHPUnit 3.5.12, the comment is split by :: and method_exist called on
the resulting string. When one use  Class::Method(), the result is a call
to method_exist( 'Method()' ) which is always false and raise an exception

Removing parentheses from r79118 solve the issue. This also kind of
revert r79164.
tests/phpunit/includes/IPTest.php