========================================== NetShortService Methods Test ==========================================
Target class [App\Services\NetShortService] does not exist.
Illuminate\Container\Container->build(string)
Illuminate\Container\Container->resolve(string, array, boolean)
Illuminate\Foundation\Application->resolve(string, array)
Illuminate\Container\Container->make(string, array)
Illuminate\Foundation\Application->make(string, array)
vendor/laravel/framework/src/Illuminate/Foundation/helpers.php
dev-utils/test_netshort_service_methods.php
7
8echo "==========================================\n";
9echo " NetShortService Methods Test\n";
10echo "==========================================\n\n";
11
12$service = app(\App\Services\NetShortService::class);
13
14// Test 1: searchDrama
15echo "1. Testing searchDrama()\n";
16echo "----------------------------------------------------------------------\n";
17$start = microtime(true);
18$result = $service->searchDrama('love', 1, 5);
19$duration = round((microtime(true) - $start) * 1000);
20echo " Status: " . ($result['ok'] ? '✅ OK' : '❌ FAILED') . "\n";
21echo " Duration: {$duration}ms\n";
22echo " Results: " . count($result['data']) . " dramas\n\n";
23
24