1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-13 05:44:04 +00:00

Test LogTenancyBootstrapper logic (low-level tests)

This commit is contained in:
lukinovec 2025-07-29 10:59:56 +02:00
parent 43cf6d2359
commit 50853a3c45
2 changed files with 229 additions and 0 deletions

View file

@ -24,6 +24,7 @@ use Stancl\Tenancy\Bootstrappers\BroadcastingConfigBootstrapper;
use Stancl\Tenancy\Bootstrappers\BroadcastChannelPrefixBootstrapper;
use Stancl\Tenancy\Bootstrappers\FilesystemTenancyBootstrapper;
use function Stancl\Tenancy\Tests\pest;
use Stancl\Tenancy\Bootstrappers\LogTenancyBootstrapper;
abstract class TestCase extends \Orchestra\Testbench\TestCase
{
@ -187,6 +188,7 @@ abstract class TestCase extends \Orchestra\Testbench\TestCase
$app->singleton(RootUrlBootstrapper::class);
$app->singleton(UrlGeneratorBootstrapper::class);
$app->singleton(FilesystemTenancyBootstrapper::class);
$app->singleton(LogTenancyBootstrapper::class);
}
protected function getPackageProviders($app)