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