Unit tests fixed

This commit is contained in:
Aleksei Akireikin
2017-07-14 16:20:14 +02:00
committed by Jaap van Otterdijk
parent 2318e5eb97
commit 3048f961a3
3 changed files with 6 additions and 1 deletions
@@ -158,6 +158,7 @@ class DeprecatedTest extends \PHPUnit_Framework_TestCase
/** /**
* @covers ::create * @covers ::create
* @uses \phpDocumentor\Reflection\DocBlock\Tags\Deprecated::__construct
*/ */
public function testFactoryMethodReturnsNullIfBodyDoesNotMatchRegex() public function testFactoryMethodReturnsNullIfBodyDoesNotMatchRegex()
{ {
@@ -22,10 +22,11 @@ use phpDocumentor\Reflection\Types\String_;
/** /**
* @coversDefaultClass \phpDocumentor\Reflection\DocBlock\Tags\Formatter\AlignFormatter * @coversDefaultClass \phpDocumentor\Reflection\DocBlock\Tags\Formatter\AlignFormatter
*/ */
class PassthroughFormatterTest extends \PHPUnit_Framework_TestCase class AlignFormatterTest extends \PHPUnit_Framework_TestCase
{ {
/** /**
* @covers ::format * @covers ::format
* @covers \phpDocumentor\Reflection\DocBlock\Tags\Formatter\AlignFormatter::__construct
* @uses \phpDocumentor\Reflection\DocBlock\Description * @uses \phpDocumentor\Reflection\DocBlock\Description
* @uses \phpDocumentor\Reflection\DocBlock\Tags\BaseTag * @uses \phpDocumentor\Reflection\DocBlock\Tags\BaseTag
* @uses \phpDocumentor\Reflection\DocBlock\Tags\Link * @uses \phpDocumentor\Reflection\DocBlock\Tags\Link
+3
View File
@@ -142,6 +142,9 @@ class MethodTest extends \PHPUnit_Framework_TestCase
/** /**
* @covers ::create * @covers ::create
* @uses \phpDocumentor\Reflection\DocBlock\Tags\Method::__construct
* @uses \phpDocumentor\Reflection\DocBlock\Tags\Method::getArguments
* @uses \phpDocumentor\Reflection\DocBlock\Description
*/ */
public function testRestArgumentIsParsedAsRegularArg() public function testRestArgumentIsParsedAsRegularArg()
{ {