Give a better message if the test table is missing (Check test app not installed)

This commit is contained in:
nathangray 2017-10-20 10:20:49 +02:00
parent accd6187e2
commit 31c007bac7

View File

@ -57,7 +57,7 @@ class BaseTest extends TestCase
protected function assertPreConditions()
{
$tables = self::$db->table_names(true);
$this->assertContains('egw_test', $tables);
$this->assertContains('egw_test', $tables, 'Could not find DB table "egw_test", make sure test app is installed');
}
public function testSaveInternalState()