%PDF- %PDF-
| Direktori : /www/loslex_o/production/vendor/gajus/dindent/tests/ |
| Current File : /www/loslex_o/production/vendor/gajus/dindent/tests/CLITest.php |
<?php
class CLITest extends PHPUnit_Framework_TestCase {
public function testMissingInputParameter () {
$this->assertSame('Missing "input" parameter.', static::exec('--foo'));
}
public function testInputFileDoesNotExist () {
$this->assertSame('"input" file does not exist.', static::exec('--input="./bar.html"'));
}
public function testIndentOutput () {
$this->assertSame('<div></div>', static::exec('--input=' . escapeshellarg(__DIR__ . '/sample/input/0-empty-block.html')));
}
static public function exec ($arguments) {
return shell_exec('php ' . escapeshellarg(__DIR__ . '/../bin/dindent.php') . ' ' . $arguments);
}
public function indentProvider () {
return array_map(function ($e) {
return array(pathinfo($e, \PATHINFO_FILENAME));
}, glob(__DIR__ . '/input/*.html'));
}
}