-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Labels
Description
In test we have a few @expectedException , eg in tests/tests/install/install.php :
/**
* Test incorrect config provided
* @expectedException YOURLS\Exceptions\ConfigException
*/
public function test_incorrect_config() {
$test = new \YOURLS\Config\Config(rand_str());
$test->find_config();
}We should also be using the @expectedExceptionMessage annotation
Reactions are currently unavailable