Add test implementation for charges, documents & payment intents

This commit is contained in:
René Preuß
2019-11-19 17:12:27 +01:00
parent da1b6b7796
commit 203dc18766
15 changed files with 290 additions and 28 deletions

View File

@@ -14,12 +14,12 @@ use GhostZero\BitinflowAccounts\Tests\TestCases\TestCase;
class ServiceInstantiationTest extends TestCase
{
public function testInstance()
public function testInstance(): void
{
$this->assertInstanceOf(BitinflowAccounts::class, app(BitinflowAccounts::class));
}
public function testFacade()
public function testFacade(): void
{
$this->assertInstanceOf(BitinflowAccounts::class, BitinflowAccountsFacade::getFacadeRoot());
}