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

Commit

Permalink
Remove "gh-" prefix from group annotations
Browse files Browse the repository at this point in the history
- Also removed `@package` annotations
- And added license block to test asset class file
  • Loading branch information
weierophinney committed Aug 21, 2013
1 parent 212d55e commit 71d2c39
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
8 changes: 3 additions & 5 deletions tests/ZendTest/Code/Generator/ClassGeneratorTest.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Code
*/

namespace ZendTest\Code\Generator;
Expand All @@ -18,7 +17,6 @@

/**
* @category Zend
* @package Zend_Code_Generator
* @subpackage UnitTests
*
* @group Zend_Code_Generator
Expand Down Expand Up @@ -267,7 +265,7 @@ public function testClassFromReflectionDiscardParentImplementedInterfaces()
}

/**
* @group gh-4988
* @group 4988
*/
public function testNonNamespaceClassReturnsAllMethods()
{
Expand Down Expand Up @@ -391,7 +389,7 @@ public function testAddUses()
}

/**
* @group gh-4990
* @group 4990
*/
public function testAddOneUseTwiceOnlyAddsOne()
{
Expand All @@ -407,7 +405,7 @@ public function testAddOneUseTwiceOnlyAddsOne()
}

/**
* @group gh-4990
* @group 4990
*/
public function testAddOneUseWithAliasTwiceOnlyAddsOne()
{
Expand Down
4 changes: 1 addition & 3 deletions tests/ZendTest/Code/Generator/ParameterGeneratorTest.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Code
*/

namespace ZendTest\Code\Generator;
Expand All @@ -16,7 +15,6 @@

/**
* @category Zend
* @package Zend_Code_Generator
* @subpackage UnitTests
*
* @group Zend_Code_Generator
Expand Down Expand Up @@ -204,7 +202,7 @@ public function testCreateFromArray()
}

/**
* @group gh-4988
* @group 4988
*/
public function testParameterGeneratorReturnsCorrectTypeForNonNamespaceClasses()
{
Expand Down
7 changes: 7 additions & 0 deletions tests/ZendTest/Code/TestAsset/NonNamespaceClass.php
@@ -1,4 +1,11 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

class ZendTest_Code_NsTest_BarClass
{
Expand Down

0 comments on commit 71d2c39

Please sign in to comment.