| 1234567891011121314151617181920212223242526272829 | <?phpclass 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],        ];    }}
 |