You are here

class VersionTagTest in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpdocumentor/reflection-docblock/tests/phpDocumentor/Reflection/DocBlock/Tag/VersionTagTest.php \phpDocumentor\Reflection\DocBlock\Tag\VersionTagTest

Test class for \phpDocumentor\Reflection\DocBlock\Tag\VersionTag

@author Vasil Rangelov <boen.robot@gmail.com> @copyright 2010-2011 Mike van Riel / Naenius. (http://www.naenius.com) @license http://www.opensource.org/licenses/mit-license.php MIT @link http://phpdoc.org

Hierarchy

  • class \phpDocumentor\Reflection\DocBlock\Tag\VersionTagTest extends \phpDocumentor\Reflection\DocBlock\Tag\PHPUnit_Framework_TestCase

Expanded class hierarchy of VersionTagTest

File

vendor/phpdocumentor/reflection-docblock/tests/phpDocumentor/Reflection/DocBlock/Tag/VersionTagTest.php, line 23

Namespace

phpDocumentor\Reflection\DocBlock\Tag
View source
class VersionTagTest extends \PHPUnit_Framework_TestCase {

  /**
   * Test that the \phpDocumentor\Reflection\DocBlock\Tag\LinkTag can create
   * a link for the @version doc block.
   *
   * @param string $type
   * @param string $content
   * @param string $exContent
   * @param string $exDescription
   * @param string $exVersion
   *
   * @covers \phpDocumentor\Reflection\DocBlock\Tag\VersionTag
   * @dataProvider provideDataForConstuctor
   *
   * @return void
   */
  public function testConstructorParesInputsIntoCorrectFields($type, $content, $exContent, $exDescription, $exVersion) {
    $tag = new VersionTag($type, $content);
    $this
      ->assertEquals($type, $tag
      ->getName());
    $this
      ->assertEquals($exContent, $tag
      ->getContent());
    $this
      ->assertEquals($exDescription, $tag
      ->getDescription());
    $this
      ->assertEquals($exVersion, $tag
      ->getVersion());
  }

  /**
   * Data provider for testConstructorParesInputsIntoCorrectFields
   *
   * @return array
   */
  public function provideDataForConstuctor() {

    // $type, $content, $exContent, $exDescription, $exVersion
    return array(
      array(
        'version',
        '1.0 First release.',
        '1.0 First release.',
        'First release.',
        '1.0',
      ),
      array(
        'version',
        "1.0\nFirst release.",
        "1.0\nFirst release.",
        'First release.',
        '1.0',
      ),
      array(
        'version',
        "1.0\nFirst\nrelease.",
        "1.0\nFirst\nrelease.",
        "First\nrelease.",
        '1.0',
      ),
      array(
        'version',
        'Unfinished release',
        'Unfinished release',
        'Unfinished release',
        '',
      ),
      array(
        'version',
        '1.0',
        '1.0',
        '',
        '1.0',
      ),
      array(
        'version',
        'GIT: $Id$',
        'GIT: $Id$',
        '',
        'GIT: $Id$',
      ),
      array(
        'version',
        'GIT: $Id$ Dev build',
        'GIT: $Id$ Dev build',
        'Dev build',
        'GIT: $Id$',
      ),
    );
  }

}

Members

Namesort descending Modifiers Type Description Overrides
VersionTagTest::provideDataForConstuctor public function Data provider for testConstructorParesInputsIntoCorrectFields
VersionTagTest::testConstructorParesInputsIntoCorrectFields public function Test that the \phpDocumentor\Reflection\DocBlock\Tag\LinkTag can create a link for the @version doc block.