mirror of
https://github.com/bitinflow/accounts.git
synced 2026-03-13 13:35:52 +00:00
30 lines
629 B
PHP
30 lines
629 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Bitinflow\Payments\Tests\TestCases;
|
|
|
|
use Bitinflow\Accounts\BitinflowAccounts;
|
|
use Bitinflow\Accounts\Providers\BitinflowAccountsServiceProvider;
|
|
use Orchestra\Testbench\TestCase as BaseTestCase;
|
|
|
|
/**
|
|
* @author René Preuß <rene@preuss.io>
|
|
*/
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
|
|
protected function getPackageProviders($app)
|
|
{
|
|
return [
|
|
BitinflowAccountsServiceProvider::class,
|
|
];
|
|
}
|
|
|
|
protected function getPackageAliases($app)
|
|
{
|
|
return [
|
|
'BitinflowAccounts' => BitinflowAccounts::class,
|
|
];
|
|
}
|
|
} |