1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-10-13 16:50:18 +02:00

Add PHPDoc for BaseTest command

This commit is contained in:
Jakub Turek 2015-02-20 16:16:18 +01:00
parent e35a8a7f3a
commit cf89e24106
2 changed files with 6 additions and 0 deletions

View File

@ -8,6 +8,7 @@ use PHPUnit_Framework_MockObject_MockObject;
/** /**
* Class AbstractCommandTest * Class AbstractCommandTest
* @package MageTest\Command * @package MageTest\Command
* @author Jakub Turek <ja@kubaturek.pl>
* @coversDefaultClass Mage\Command\AbstractCommand * @coversDefaultClass Mage\Command\AbstractCommand
*/ */
class AbstractCommandTest extends BaseTest class AbstractCommandTest extends BaseTest

View File

@ -4,6 +4,11 @@ namespace MageTest\TestHelper;
/** /**
* Class BaseTest * Class BaseTest
*
* Class containing common methods useful for unit testing.
* Since Magallanes keeps compatibility with PHP 5.3, those methods can't be moved to a trait.
* This class extends \PHPUnit_Framework_TestCase so it can be used with any test class.
*
* @package MageTest\TestHelper * @package MageTest\TestHelper
* @author Jakub Turek <ja@kubaturek.pl> * @author Jakub Turek <ja@kubaturek.pl>
*/ */