-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
191 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace phpDocumentor\Reflection\DocBlock\Tags; | ||
|
||
use phpDocumentor\Reflection\Fqsen; | ||
use phpDocumentor\Reflection\Types\Object_; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* @covers \phpDocumentor\Reflection\DocBlock\Tags\Extends_ | ||
*/ | ||
final class ExtendsTest extends TestCase | ||
{ | ||
public function testExtendsCreatedCorrectly(): void | ||
{ | ||
$type = new Object_(new Fqsen('\\Type')); | ||
$fixture = new Extends_($type); | ||
$this->assertSame('extends', $fixture->getName()); | ||
$this->assertSame($type, $fixture->getType()); | ||
} | ||
|
||
public function testRendersCorrectly(): void | ||
{ | ||
$type = new Object_(new Fqsen('\\Type')); | ||
$fixture = new Extends_($type); | ||
$this->assertSame('@extends \\Type', $fixture->render()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace phpDocumentor\Reflection\DocBlock\Tags; | ||
|
||
use phpDocumentor\Reflection\Fqsen; | ||
use phpDocumentor\Reflection\Types\Object_; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* @covers \phpDocumentor\Reflection\DocBlock\Tags\Implements_ | ||
*/ | ||
final class ImplementsTest extends TestCase | ||
{ | ||
public function testCreatedCorrectly(): void | ||
{ | ||
$type = new Object_(new Fqsen('\\Type')); | ||
$fixture = new Implements_($type); | ||
$this->assertSame('implements', $fixture->getName()); | ||
$this->assertSame($type, $fixture->getType()); | ||
} | ||
|
||
public function testRendersCorrectly(): void | ||
{ | ||
$type = new Object_(new Fqsen('\\Type')); | ||
$fixture = new Implements_($type); | ||
$this->assertSame('@implements \\Type', $fixture->render()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace phpDocumentor\Reflection\DocBlock\Tags; | ||
|
||
use phpDocumentor\Reflection\Fqsen; | ||
use phpDocumentor\Reflection\Types\Object_; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* @covers \phpDocumentor\Reflection\DocBlock\Tags\TemplateExtends | ||
*/ | ||
final class TemplateExtendsTest extends TestCase | ||
{ | ||
public function testExtendsCreatedCorrectly(): void | ||
{ | ||
$type = new Object_(new Fqsen('\\Type')); | ||
$fixture = new TemplateExtends($type); | ||
$this->assertSame('template-extends', $fixture->getName()); | ||
$this->assertSame($type, $fixture->getType()); | ||
} | ||
|
||
public function testRendersCorrectly(): void | ||
{ | ||
$type = new Object_(new Fqsen('\\Type')); | ||
$fixture = new TemplateExtends($type); | ||
$this->assertSame('@template-extends \\Type', $fixture->render()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace phpDocumentor\Reflection\DocBlock\Tags; | ||
|
||
use phpDocumentor\Reflection\Fqsen; | ||
use phpDocumentor\Reflection\Types\Object_; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* @covers \phpDocumentor\Reflection\DocBlock\Tags\TemplateImplements | ||
*/ | ||
final class TemplateImplementsTest extends TestCase | ||
{ | ||
public function testCreatedCorrectly(): void | ||
{ | ||
$type = new Object_(new Fqsen('\\Type')); | ||
$fixture = new TemplateImplements($type); | ||
$this->assertSame('template-implements', $fixture->getName()); | ||
$this->assertSame($type, $fixture->getType()); | ||
} | ||
|
||
public function testRendersCorrectly(): void | ||
{ | ||
$type = new Object_(new Fqsen('\\Type')); | ||
$fixture = new TemplateImplements($type); | ||
$this->assertSame('@template-implements \\Type', $fixture->render()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace phpDocumentor\Reflection\DocBlock\Tags; | ||
|
||
use phpDocumentor\Reflection\DocBlock\Description; | ||
use phpDocumentor\Reflection\Types\Mixed_; | ||
use phpDocumentor\Reflection\Types\String_; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* @coversDefaultClass \phpDocumentor\Reflection\DocBlock\Tags\Template | ||
* @covers ::<private> | ||
*/ | ||
final class TemplateTest extends TestCase | ||
{ | ||
/** | ||
* @covers ::__construct | ||
* @covers ::getTemplateName | ||
* @covers ::getBound | ||
* @covers ::getDefault | ||
*/ | ||
public function testTemplateCreatedCorrectly(): void | ||
{ | ||
$fixture = new Template('myTemplate', new String_(), new Mixed_(), new Description('')); | ||
$this->assertSame('template', $fixture->getName()); | ||
$this->assertSame('myTemplate', $fixture->getTemplateName()); | ||
$this->assertEquals(new String_(), $fixture->getBound()); | ||
$this->assertEquals(new Mixed_(), $fixture->getDefault()); | ||
} | ||
|
||
public function testRendersCorrectly(): void | ||
{ | ||
$fixture = new Template('myTemplate', new String_(), null, new Description('')); | ||
$this->assertSame('@template myTemplate of string', $fixture->render()); | ||
} | ||
} |