php-uptelligence/tests/TestCase.php

18 lines
295 B
PHP
Raw Normal View History

2026-01-26 23:25:24 +00:00
<?php
declare(strict_types=1);
2026-01-26 23:25:24 +00:00
namespace Tests;
use Orchestra\Testbench\TestCase as BaseTestCase;
2026-01-26 23:25:24 +00:00
abstract class TestCase extends BaseTestCase
{
protected function getPackageProviders($app): array
{
return [
\Core\Mod\Uptelligence\Boot::class,
];
}
2026-01-26 23:25:24 +00:00
}