1 | <?php |
||
10 | class CsvFileContext extends BaseContext |
||
11 | { |
||
12 | /** @var string */ |
||
13 | private $projectDir; |
||
14 | |||
15 | public function __construct(string $projectDir) |
||
19 | |||
20 | /** |
||
21 | * @Given the CSV file :path should contain :number rows |
||
22 | * @Given the CSV file :path should contain :number row |
||
23 | */ |
||
24 | public function theCsvFileShouldContainElements(string $path, int $number): void |
||
35 | } |
||
36 |