PHP Classes

File: tests.php

Recommend this page to a friend!
  Classes of Alexandre Sinício   Easy Subtitle Downloader   tests.php   Download  
File: tests.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Easy Subtitle Downloader
Download movie subtitles with EasySubtitles API
Author: By
Last change:
Date: 6 years ago
Size: 350 bytes
 

Contents

Class file image Download
<?php

use alesinicio\Easysubtitle\EasysubtitleDownloaderTest;

require
'vendor/alesinicio/Easysubtitle/EasysubtitleDownloader.php';
require
'tests/alesinicio/Easysubtitle/EasysubtitleDownloader.test.php';

try {
   
$results = EasysubtitleDownloaderTest::runAllTests();
   
print_r($results);
} catch (
Exception $e) {
    die(
$e->getMessage());
}