======================================== Testing NetShort API Optimization ========================================
Class "App\Services\NetShortService" not found
dev-utils/test_netshort_optimization.php
20echo "========================================\n\n";
21
22// Clear any caches
23Cache::flush();
24
25$service = new NetShortService($lang);
26
27echo "Testing episode 7 fetch...\n";
28echo "Expected behavior:\n";
29echo " 1. Fetch video from new API (direct)\n";
30echo " 2. Fetch drama metadata (once)\n";
31echo " Total: 2 API calls instead of 3\n\n";
32
33$startTime = microtime(true);
34$result = $service->getDramaEpisode($bookId, 7);
35$duration = round((microtime(true) - $startTime) * 1000);
36
37