EVOLUTION-MANAGER
Edit File: Issue1021Test.php
<?php class Issue1021Test extends PHPUnit_Framework_TestCase { /** * @dataProvider provider */ public function testSomething($data) { $this->assertTrue($data); } /** * @depends testSomething */ public function testSomethingElse() { } public function provider() { return [[true]]; } }