2014-09-20 18:30:48 +02:00
|
|
|
<?php
|
|
|
|
namespace Szurubooru\Tests;
|
2014-10-08 14:47:47 +02:00
|
|
|
use Szurubooru\Helpers\ProgramExecutor;
|
|
|
|
use Szurubooru\Tests\AbstractTestCase;
|
2014-09-20 18:30:48 +02:00
|
|
|
|
2014-10-08 14:47:47 +02:00
|
|
|
final class ProgramExecutorTest extends AbstractTestCase
|
2014-09-20 18:30:48 +02:00
|
|
|
{
|
2015-11-25 09:48:03 +01:00
|
|
|
public function testIsProgramAvailable()
|
|
|
|
{
|
|
|
|
$this->assertFalse(ProgramExecutor::isProgramAvailable('there_is_no_way_my_os_can_have_this_program'));
|
|
|
|
}
|
2014-09-20 18:30:48 +02:00
|
|
|
}
|