alltube/tests/ConfigTest.php

33 lines
814 B
PHP
Raw Normal View History

2015-10-31 15:42:25 +01:00
<?php
/**
* ConfigTest class
2016-08-01 13:29:13 +02:00
*/
2016-03-30 01:49:08 +02:00
namespace Alltube\Test;
2015-10-31 15:42:25 +01:00
use Alltube\Config;
/**
* Unit tests for the Config class
2016-08-01 13:29:13 +02:00
*/
2016-03-30 01:49:08 +02:00
class ConfigTest extends \PHPUnit_Framework_TestCase
2015-10-31 15:42:25 +01:00
{
2015-10-31 15:50:32 +01:00
/**
* Test the getInstance function
2016-02-28 23:04:53 +01:00
*
2015-10-31 15:50:32 +01:00
* @return void
*/
2015-10-31 15:42:25 +01:00
public function testGetInstance()
{
putenv('CONVERT=1');
$config = Config::getInstance();
$this->assertEquals($config->convert, true);
2016-07-30 00:47:46 +02:00
$this->assertInternalType('array', $config->curl_params);
$this->assertInternalType('array', $config->params);
$this->assertInternalType('string', $config->youtubedl);
$this->assertInternalType('string', $config->python);
$this->assertInternalType('string', $config->avconv);
$this->assertInternalType('string', $config->rtmpdump);
2015-10-31 15:42:25 +01:00
}
}