Skip to content

Commit

Permalink
assets collection construct test
Browse files Browse the repository at this point in the history
  • Loading branch information
Naut de Jong authored and Naut de Jong committed Feb 14, 2020
1 parent d54f5ed commit f400c4f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/unit/Assets/Collection/ConstructCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

namespace Phalcon\Test\Unit\Assets\Collection;

use Phalcon\Assets\Collection;
use UnitTester;

class ConstructCest
Expand All @@ -27,6 +28,11 @@ public function assetsCollectionConstruct(UnitTester $I)
{
$I->wantToTest('Assets\Collection - __construct()');

$I->skipTest('Need implementation');
$collection = new Collection();

$I->assertInstanceOf(
Collection::class,
$collection
);
}
}

0 comments on commit f400c4f

Please sign in to comment.