<?php class SimpleWithDataProviderArrayCest { /** * @dataProvider getTestData * * @example ["fizz", "buzz"] * @example [null, "test"] */ public function helloWorld(\CodeGuy $I, \Codeception\Example $example) { $I->execute(function($example) { if (!is_array($example)) { return false; } return count($example); })->seeResultEquals(2); } protected function getTestData() { return [ ['foo', 'bar'], [1, 2], [true, false], ]; } }