================================================= NetShort API Endpoints Test Testing all methods needed for DramaApiController =================================================
Class "App\Services\NetShortService" not found
dev-utils/test_netshort_api_endpoints.php
13echo "=================================================\n";
14echo "NetShort API Endpoints Test\n";
15echo "Testing all methods needed for DramaApiController\n";
16echo "=================================================\n\n";
17
18$service = new App\Services\NetShortService('en');
19
20// Test 1: getPopularOnline (for getPopular endpoint)
21echo "Test 1: getPopularOnline() - for Popular API\n";
22echo str_repeat('-', 50) . "\n";
23$startTime = microtime(true);
24$popular = $service->getPopularOnline(10);
25$duration1 = round((microtime(true) - $startTime) * 1000);
26
27echo "Duration: {$duration1}ms\n";
28echo "Results: " . count($popular) . "\n";
29if (!empty($popular)) {
30