Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed May 8, 2017
1 parent 122874e commit 4c94e8f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/config/goals.yml
@@ -1,4 +1,4 @@
install:
deploy:
after:
- create-storage
- chmod-storage
Expand Down
5 changes: 3 additions & 2 deletions tests/_bootstrap.php
Expand Up @@ -8,6 +8,7 @@
* @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
*/

error_reporting(E_ALL & ~E_NOTICE);
error_reporting(E_ALL);

require_once __DIR__ . '/../src/config/bootstrap.php';
require_once __DIR__ . '/../vendor/autoload.php';
require_once __DIR__ . '/../vendor/yiisoft/yii2/Yii.php';
5 changes: 1 addition & 4 deletions tests/unit/models/AssetPackageTest.php
Expand Up @@ -12,10 +12,7 @@

use hiqdev\assetpackagist\models\AssetPackage;

/**
* Generated by PHPUnit_SkeletonGenerator on 2016-04-23 at 14:42:40.
*/
class AssetPackageTest extends \PHPUnit_Framework_TestCase
class AssetPackageTest extends \PHPUnit\Framework\TestCase
{
/**
* @var AssetPackage
Expand Down
5 changes: 1 addition & 4 deletions tests/unit/models/StorageTest.php
Expand Up @@ -12,10 +12,7 @@

use hiqdev\assetpackagist\components\Storage;

/**
* Generated by PHPUnit_SkeletonGenerator on 2016-04-23 at 14:46:14.
*/
class StorageTest extends \PHPUnit_Framework_TestCase
class StorageTest extends \PHPUnit\Framework\TestCase
{
/**
* @var Storage
Expand Down

1 comment on commit 4c94e8f

@edgardmessias
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This close #38

Please sign in to comment.