-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bb706ea
commit 7f6a98f
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
packages/framework/tests/Unit/Facades/HydeFrontFacadeTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Hyde\Framework\Testing\Unit\Facades; | ||
|
||
use Hyde\Facades\HydeFront; | ||
use Hyde\Framework\Services\HydeFrontService; | ||
use Hyde\Testing\TestCase; | ||
|
||
/** | ||
* @covers \Hyde\Facades\HydeFront | ||
*/ | ||
class HydeFrontFacadeTest extends TestCase | ||
{ | ||
public function testHydeFrontFacadeReturnsTheHydeFrontService() | ||
{ | ||
$this->assertInstanceOf(HydeFrontService::class, HydeFront::getFacadeRoot()); | ||
} | ||
|
||
public function testFacadeReturnsSameInstanceAsBoundByTheContainer() | ||
{ | ||
$this->assertSame(HydeFront::getFacadeRoot(), app(HydeFrontService::class)); | ||
} | ||
|
||
public function testHydeFrontFacadeCanCallMethodsOnTheHydeFrontService() | ||
{ | ||
$service = new HydeFrontService(); | ||
$this->assertEquals($service->version(), HydeFront::version()); | ||
$this->assertEquals($service->cdnLink('styles.css'), HydeFront::cdnLink('styles.css')); | ||
} | ||
} |