Fix generated unit test stub files

This commit is contained in:
gmorel
2013-11-23 20:21:52 +01:00
parent 90b5fbde05
commit 23b294dcc9
6 changed files with 0 additions and 29 deletions

View File

@@ -37,10 +37,6 @@ namespace Thelia\Coupon;
*/
class BaseFacadeTest extends \PHPUnit_Framework_TestCase
{
/**
* @var BaseFacade
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
@@ -48,7 +44,6 @@ class BaseFacadeTest extends \PHPUnit_Framework_TestCase
*/
protected function setUp()
{
$this->object = new BaseFacade;
}
/**

View File

@@ -45,10 +45,6 @@ use Thelia\Model\CurrencyQuery;
*/
class CouponFactoryTest extends \PHPUnit_Framework_TestCase
{
/**
* @var CouponFactory
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.

View File

@@ -37,10 +37,6 @@ namespace Thelia\Coupon;
*/
class CouponManagerTest extends \PHPUnit_Framework_TestCase
{
/**
* @var CouponManager
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
@@ -48,7 +44,6 @@ class CouponManagerTest extends \PHPUnit_Framework_TestCase
*/
protected function setUp()
{
$this->object = new CouponManager;
}
/**

View File

@@ -37,10 +37,6 @@ namespace Thelia\Coupon\Type;
*/
class CouponAbstractTest extends \PHPUnit_Framework_TestCase
{
/**
* @var CouponAbstract
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
@@ -48,7 +44,6 @@ class CouponAbstractTest extends \PHPUnit_Framework_TestCase
*/
protected function setUp()
{
// $this->object = new CouponAbstract();
}
/**

View File

@@ -37,10 +37,6 @@ namespace Thelia\Coupon\Type;
*/
class RemoveXAmountTest extends \PHPUnit_Framework_TestCase
{
/**
* @var RemoveXAmount
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
@@ -48,7 +44,6 @@ class RemoveXAmountTest extends \PHPUnit_Framework_TestCase
*/
protected function setUp()
{
// $this->object = new RemoveXAmount;
}
/**

View File

@@ -37,10 +37,6 @@ namespace Thelia\Coupon\Type;
*/
class RemoveXPercentTest extends \PHPUnit_Framework_TestCase
{
/**
* @var RemoveXPercent
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
@@ -48,7 +44,6 @@ class RemoveXPercentTest extends \PHPUnit_Framework_TestCase
*/
protected function setUp()
{
// $this->object = new RemoveXPercent;
}
/**