コード例 #1
0
ファイル: LicenseTagTest.php プロジェクト: pnaq57/zf2demo
 public function testConstructorWithOptions()
 {
     $this->tag->setOptions(array('url' => 'foo', 'licenseName' => 'bar'));
     $tagWithOptionsFromConstructor = new LicenseTag('foo', 'bar');
     $this->assertEquals($this->tag->generate(), $tagWithOptionsFromConstructor->generate());
 }
コード例 #2
0
ファイル: TagTest.php プロジェクト: razvansividra/pnlzf2-1
 public function testCanGenerateLicenseTag()
 {
     $tag = new LicenseTag(array('url' => 'http://test.license.com', 'description' => 'Test License'));
     $this->assertEquals('@license http://test.license.com Test License', $tag->generate());
 }
コード例 #3
0
 public function testLicenseProducesCorrectDocBlockLine()
 {
     $this->tag->setUrl('foo');
     $this->tag->setLicenseName('bar bar bar');
     $this->assertEquals('@license foo bar bar bar', $this->tag->generate());
 }