Testing NetShort drama: 1897201018198847490 ============================================================
Class "App\Services\NetShortService" not found
dev-utils/test_drama_1897201018198847490.php
6$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
7
8echo "Testing NetShort drama: 1897201018198847490\n";
9echo str_repeat('=', 60) . "\n";
10
11$service = new App\Services\NetShortService('zh');
12$startTime = microtime(true);
13
14try {
15 $drama = $service->getDrama('1897201018198847490');
16 $duration = round((microtime(true) - $startTime) * 1000);
17
18 echo "Duration: {$duration}ms\n";
19 echo "Success: " . (!empty($drama['name']) ? 'Yes' : 'No') . "\n\n";
20
21 if (!empty($drama['name'])) {
22 echo "Drama Name: " . $drama['name'] . "\n";
23