Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Cleaned up annotations for tests of zendframework/zendframework#6083
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed Apr 6, 2014
1 parent b4dcb39 commit 1e8208b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/Hydrator/Filter/NumberOfParameterFilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,22 @@
* Unit tests for {@see \Zend\Stdlib\Hydrator\Filter\NumberOfParameterFilter}
*
* @covers \Zend\Stdlib\Hydrator\Filter\NumberOfParameterFilter
* @group Zend_Stdlib
*/
class NumberOfParameterFilterTest extends \PHPUnit_Framework_TestCase
{
/**
* @group 6083
*/
public function testArityZero()
{
$filter = new NumberOfParameterFilter();
$this->assertTrue($filter->filter(__CLASS__ . '::methodWithNoParameters'));
$this->assertFalse($filter->filter(__CLASS__ . '::methodWithOptionalParameters'));
}

/**
* @group 6083
*/
public function testArityOne()
{
$filter = new NumberOfParameterFilter(1);
Expand Down

0 comments on commit 1e8208b

Please # to comment.