I\'ve read the documentation on the topic, and my code follows all requirements of a data provider implementation. First of all, here\'s the full code of the test just in case i
To emphasise the point that micro_user made, the @dataProvider
annotation must be in a docblock comment. i.e. do this:
/**
* @dataProvider myDataProvider
*
*/
public function testMyMethod(...)
{
...
}
Don't do this since it won't work:
/*
* @dataProvider myDataProvider
*
*/
public function testMyMethod(...)
{
...
}