test: fix TestCase to use Orchestra Testbench for CI

This commit is contained in:
Claude 2026-02-23 06:18:30 +00:00
parent d58222cf81
commit c6e52bd74c
2 changed files with 65 additions and 50 deletions

View file

@ -1,50 +1,58 @@
{
"name": "host-uk/core-agentic",
"description": "AI agent orchestration and MCP tools for Laravel",
"keywords": [
"ai",
"agents",
"mcp",
"orchestration"
],
"license": "EUPL-1.2",
"require": {
"php": "^8.2",
"host-uk/core": "dev-main"
},
"require-dev": {
"laravel/pint": "^1.18",
"orchestra/testbench": "^9.0|^10.0",
"pestphp/pest": "^3.0"
},
"autoload": {
"psr-4": {
"Core\\Mod\\Agentic\\": "",
"Core\\Service\\Agentic\\": "Service/"
}
},
"autoload-dev": {
"psr-4": {
"Core\\Mod\\Agentic\\Tests\\": "Tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Core\\Mod\\Agentic\\Boot"
]
}
},
"scripts": {
"lint": "pint",
"test": "pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
"name": "host-uk/core-agentic",
"description": "AI agent orchestration and MCP tools for Laravel",
"keywords": [
"ai",
"agents",
"mcp",
"orchestration"
],
"license": "EUPL-1.2",
"require": {
"php": "^8.2",
"host-uk/core": "dev-main"
},
"require-dev": {
"laravel/pint": "^1.18",
"orchestra/testbench": "^9.0|^10.0",
"pestphp/pest": "^3.0"
},
"autoload": {
"psr-4": {
"Core\\Mod\\Agentic\\": "",
"Core\\Service\\Agentic\\": "Service/"
}
},
"autoload-dev": {
"psr-4": {
"Core\\Mod\\Agentic\\Tests\\": "Tests/",
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Core\\Mod\\Agentic\\Boot"
]
}
},
"scripts": {
"lint": "pint",
"test": "pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"name": "core",
"type": "path",
"url": "../php-framework"
}
]
}

View file

@ -1,10 +1,17 @@
<?php
declare(strict_types=1);
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
use Orchestra\Testbench\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
//
protected function getPackageProviders($app): array
{
return [
\Core\Mod\Agentic\Boot::class,
];
}
}