Skip to content
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.

Commit

Permalink
Use PHPUnit_Framework_TestCase instead of deprecated MW_Unittest_Test…
Browse files Browse the repository at this point in the history
…case
  • Loading branch information
aimeos committed Oct 3, 2015
1 parent 91da69a commit 07fe322
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/custom/tests/MW/Config/Zend2Test.php
Expand Up @@ -9,7 +9,7 @@
/**
* Test class for MW_Config_Zend2.
*/
class MW_Config_Zend2Test extends MW_Unittest_Testcase
class MW_Config_Zend2Test extends PHPUnit_Framework_TestCase
{
private $object;

Expand Down
2 changes: 1 addition & 1 deletion lib/custom/tests/MW/Logger/Zend2Test.php
Expand Up @@ -9,7 +9,7 @@
/**
* Test class for MW_Logger_Zend2.
*/
class MW_Logger_Zend2Test extends MW_Unittest_Testcase
class MW_Logger_Zend2Test extends PHPUnit_Framework_TestCase
{
private $object;

Expand Down
2 changes: 1 addition & 1 deletion lib/custom/tests/MW/Mail/Message/Zend2Test.php
Expand Up @@ -6,7 +6,7 @@
*/


class MW_Mail_Message_Zend2Test extends MW_Unittest_Testcase
class MW_Mail_Message_Zend2Test extends PHPUnit_Framework_TestCase
{
private $object;
private $mock;
Expand Down
2 changes: 1 addition & 1 deletion lib/custom/tests/MW/Mail/Zend2Test.php
Expand Up @@ -6,7 +6,7 @@
*/


class MW_Mail_Zend2Test extends MW_Unittest_Testcase
class MW_Mail_Zend2Test extends PHPUnit_Framework_TestCase
{
private $object;
private $mock;
Expand Down
2 changes: 1 addition & 1 deletion lib/custom/tests/MW/View/Helper/Url/Zend2Test.php
Expand Up @@ -9,7 +9,7 @@
/**
* Test class for MW_View_Helper_Url_Zend2.
*/
class MW_View_Helper_Url_Zend2Test extends MW_Unittest_Testcase
class MW_View_Helper_Url_Zend2Test extends PHPUnit_Framework_TestCase
{
private $object;
private $router;
Expand Down
2 changes: 1 addition & 1 deletion lib/custom/tests/Perf/Config/Zend2Test.php
Expand Up @@ -5,7 +5,7 @@
* @copyright Aimeos (aimeos.org), 2014
*/

class Perf_Config_Zend2Test extends MW_Unittest_Testcase
class Perf_Config_Zend2Test extends PHPUnit_Framework_TestCase
{
public function testZend2()
{
Expand Down

0 comments on commit 07fe322

Please sign in to comment.