szurubooru/tests/Helpers/ProgramExecutorTest.php

13 lines
329 B
PHP
Raw Normal View History

2014-09-20 18:30:48 +02:00
<?php
namespace Szurubooru\Tests;
use Szurubooru\Helpers\ProgramExecutor;
use Szurubooru\Tests\AbstractTestCase;
2014-09-20 18:30:48 +02:00
final class ProgramExecutorTest extends AbstractTestCase
2014-09-20 18:30:48 +02: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
}
}