mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-28 12:30:42 +02:00
[ticket/14703] Improve exception testing
PHPBB3-14703
This commit is contained in:
@@ -132,7 +132,11 @@ class phpbb_dbal_migrator_tool_module_test extends phpbb_database_test_case
|
|||||||
));
|
));
|
||||||
$this->fail('Exception not thrown');
|
$this->fail('Exception not thrown');
|
||||||
}
|
}
|
||||||
catch (Exception $e) {}
|
catch (Exception $e)
|
||||||
|
{
|
||||||
|
$this->assertEquals('phpbb\db\migration\exception', get_class($e));
|
||||||
|
$this->assertEquals('MODULE_EXIST_MULTIPLE', $e->getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
// Test adding module when plural parent module_langname exists
|
// Test adding module when plural parent module_langname exists
|
||||||
// PHPBB3-14703
|
// PHPBB3-14703
|
||||||
|
Reference in New Issue
Block a user