1 | <?php |
||
8 | class PromptMatcherTest extends PHPUnit_Framework_TestCase |
||
9 | { |
||
10 | /** |
||
11 | * @dataProvider dataProviderIsMatch |
||
12 | * |
||
13 | * @param string $prompt |
||
14 | * @param string $subject |
||
15 | * @param string $lineEnding |
||
16 | * @param bool $isMatch |
||
17 | * @param array $matches |
||
18 | * @param string $response |
||
19 | * |
||
20 | * @return void |
||
21 | */ |
||
22 | public function testIsMatch($prompt, $subject, $lineEnding, $isMatch, array $matches = null, $response = null) |
||
35 | |||
36 | /** |
||
37 | * @return array |
||
38 | */ |
||
39 | public function dataProviderIsMatch() |
||
48 | } |
||
49 |