Issue765Test.php in Zircon Profile 8.0
Same filename and directory in other branches
File
vendor/phpunit/phpunit/tests/Regression/GitHub/765/Issue765Test.phpView source
<?php
class Issue765Test extends PHPUnit_Framework_TestCase {
public function testDependee() {
$this
->assertTrue(true);
}
/**
* @depends testDependee
* @dataProvider dependentProvider
*/
public function testDependent($a) {
$this
->assertTrue(true);
}
public function dependentProvider() {
throw new Exception();
}
}
Classes
Name | Description |
---|---|
Issue765Test |