mirror of
https://github.com/php/phpruntests.git
synced 2026-03-25 08:32:21 +01:00
14 lines
277 B
PHP
14 lines
277 B
PHP
<?php
|
|
|
|
require_once dirname(__FILE__) . '/../src/rtAutoload.php';
|
|
|
|
class rtHelpTextTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function testOutput()
|
|
{
|
|
$words = rtText::get('help');
|
|
$this->assertEquals(substr($words, 0, 9), 'Synopsis:');
|
|
}
|
|
}
|
|
?>
|