| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function testThatStepCanHaveOnlyOneArgument() |
||
| 13 | { |
||
| 14 | $this->expectException('Behat\Gherkin\Exception\NodeException'); |
||
| 15 | |||
| 16 | new StepNode('Gangway!', 'I am on the page:', array( |
||
| 17 | new PyStringNode(array('one', 'two'), 11), |
||
| 18 | new TableNode(array(array('one', 'two'))), |
||
| 19 | ), 10, 'Given'); |
||
| 20 | } |
||
| 21 | } |
||
| 22 |