Files
accounts/tests/Payments/TestCases/TestCase.php
René Preuß a2405875ad Refactoring
2022-10-01 14:00:25 +02:00

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,
];
}
}