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
* @package MageTest\Command
* @author Jakub Turek <ja@kubaturek.pl>
* @coversDefaultClass Mage\Command\AbstractCommand
*/
class AbstractCommandTest extends BaseTest

View file

@ -4,6 +4,11 @@ namespace MageTest\TestHelper;
/**
* 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
* @author Jakub Turek <ja@kubaturek.pl>
*/