Skip to content

Commit

Permalink
update base test classes
Browse files Browse the repository at this point in the history
  • Loading branch information
albertborsos committed Mar 6, 2018
1 parent dda959a commit 194ded2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tests/_support/base/AbstractBaseResourceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

namespace albertborsos\ddd\tests\support\base;

use Codeception\Test\Unit;
use Yii;

abstract class AbstractBaseResourceTest extends \yii\codeception\DbTestCase
abstract class AbstractBaseResourceTest extends Unit
{
protected $resourceClass;
protected $modelClass;
Expand Down
3 changes: 2 additions & 1 deletion tests/_support/base/AbstractDomainTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

namespace albertborsos\ddd\tests\support\base;

use Codeception\Test\Unit;
use Yii;

abstract class AbstractDomainTest extends \yii\codeception\DbTestCase
abstract class AbstractDomainTest extends Unit
{
protected $formClass;
protected $domainClass;
Expand Down
3 changes: 2 additions & 1 deletion tests/_support/base/AbstractFormTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

namespace albertborsos\ddd\tests\support\base;

use Codeception\Test\Unit;
use Yii;

abstract class AbstractFormTest extends \yii\codeception\DbTestCase
abstract class AbstractFormTest extends Unit
{
protected $formClass;
protected $modelClass;
Expand Down

0 comments on commit 194ded2

Please sign in to comment.