39 lines
No EOL
1.1 KiB
PHP
39 lines
No EOL
1.1 KiB
PHP
<?php
|
|
include_once 'hammer.php';
|
|
|
|
class SequenceTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
protected $parser1;
|
|
protected $parser2;
|
|
|
|
protected function setUp()
|
|
{
|
|
$this->parser1 = hammer_sequence(hammer_ch("a"), hammer_ch("b"));
|
|
$this->parser2 = hammer_sequence(hammer_ch("a"), hammer_whitespace(hammer_ch("b")));
|
|
}
|
|
|
|
public function testSuccess1()
|
|
{
|
|
$result = hammer_parse($this->parser1, "ab");
|
|
$this->assertEquals(array("a", "b"), $result);
|
|
}
|
|
|
|
public function testFailure1()
|
|
{
|
|
$result1 = hammer_parse($this->parser1, "a");
|
|
$result2 = hammer_parse($this->parser2, "b");
|
|
$this->assertEquals(NULL, $result1);
|
|
$this->assertEquals(NULL, $result2);
|
|
}
|
|
|
|
public function testSuccess2()
|
|
{
|
|
$result1 = hammer_parse($this->parser2, "ab");
|
|
$result2 = hammer_parse($this->parser2, "a b");
|
|
$result3 = hammer_parse($this->parser2, "a b");
|
|
$this->assertEquals(array("a", "b"), $result1);
|
|
$this->assertEquals(array("a", "b"), $result2);
|
|
$this->assertEquals(array("a", "b"), $result3);
|
|
}
|
|
}
|
|
?>
|