szurubooru/tests/Helpers/ProgramExecutorTest.php
Marcin Kurczewski 632bac8661 Added "use ..." statements
This version ditches backwards compatibility with PHP earlier than 5.6.
2014-10-18 18:48:36 +02:00

12 lines
329 B
PHP

<?php
namespace Szurubooru\Tests;
use Szurubooru\Helpers\ProgramExecutor;
use Szurubooru\Tests\AbstractTestCase;
final class ProgramExecutorTest extends AbstractTestCase
{
public function testIsProgramAvailable()
{
$this->assertFalse(ProgramExecutor::isProgramAvailable('there_is_no_way_my_os_can_have_this_program'));
}
}