mirror of
https://github.com/bitinflow/accounts.git
synced 2026-03-14 14:05:52 +00:00
Initial commit
This commit is contained in:
26
tests/ServiceInstantiationTest.php
Normal file
26
tests/ServiceInstantiationTest.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace GhostZero\BitinflowAccounts\Tests;
|
||||
|
||||
use GhostZero\BitinflowAccounts\BitinflowAccounts;
|
||||
use GhostZero\BitinflowAccounts\Facades\BitinflowAccounts as BitinflowAccountsFacade;
|
||||
use GhostZero\BitinflowAccounts\Tests\TestCases\TestCase;
|
||||
|
||||
/**
|
||||
* @author René Preuß <rene@preuss.io>
|
||||
*/
|
||||
class ServiceInstantiationTest extends TestCase
|
||||
{
|
||||
|
||||
public function testInstance()
|
||||
{
|
||||
$this->assertInstanceOf(BitinflowAccounts::class, app(BitinflowAccounts::class));
|
||||
}
|
||||
|
||||
public function testFacade()
|
||||
{
|
||||
$this->assertInstanceOf(BitinflowAccounts::class, BitinflowAccountsFacade::getFacadeRoot());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user