Skip to content

Commit

Permalink
Following gavinlove suggestion - not working
Browse files Browse the repository at this point in the history
  • Loading branch information
kubawerlos committed Nov 15, 2017
1 parent 7f88aa1 commit dcace3b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/_files/DataProviderDeclaringClass/SecondTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,18 @@ class SecondTest extends TestCase
{
const DUMMY = 'dummy';

/**
* @dataProvider provideCases
*/
public function testSecond()
{
$this->assertTrue(true);
}

public function provideCases()
{
SecondTest::DUMMY;

return [[true]];
}
}

0 comments on commit dcace3b

Please sign in to comment.