Issue1021Test.php in Zircon Profile 8.0
Same filename and directory in other branches
File
vendor/phpunit/phpunit/tests/Regression/1021/Issue1021Test.phpView source
<?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 array(
array(
true,
),
);
}
}
Classes
Name | Description |
---|---|
Issue1021Test |