You need to install packages:
composer install
Then prepare your config:
<?php
/**
* Test config
* @var array
*/
$config = array(
'login' => 'login', // ispAPI login
'pass' => 'pass', // ispAPI password
'test' => true, // ispAPI test mode flag
'log' => __DIR__.'/path/to/test.log', // log file
'log_level' => 1 // log level
);
Run standart PHPUnit command from tests directory:
phpunit --bootstrap vendor/autoload.php class.OllTvTest.php