php-agentic/tests/TestCase.php

18 lines
290 B
PHP
Raw Normal View History

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