mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
MDL-16486 Implemented test DB upgrade, needs further testing
This commit is contained in:
parent
274e2947a2
commit
2d5b05c878
3 changed files with 57 additions and 14 deletions
|
@ -6,10 +6,12 @@ $string['all'] = 'ALL';
|
|||
$string['addconfigprefix'] = 'Add prefix to config file';
|
||||
$string['deletingnoninsertedrecord'] = 'Trying to delete a record that was not inserted by these unit tests (id $a->id in table $a->table).';
|
||||
$string['deletingnoninsertedrecords'] = 'Trying to delete records that were not inserted by these unit tests (from table $a->table).';
|
||||
$string['droptesttables'] = 'Drop test tables';
|
||||
$string['exception'] = 'Exception';
|
||||
$string['fail'] = 'Fail';
|
||||
$string['ignorefile'] = 'Ignore tests in the file';
|
||||
$string['ignorethisfile'] = 'Re-run the tests ignoring this test file.';
|
||||
$string['installtesttables'] = 'Install test tables';
|
||||
$string['moodleunittests'] = 'Moodle unit tests: $a';
|
||||
$string['notice'] = 'Notice';
|
||||
$string['onlytest'] = 'Only run tests in';
|
||||
|
@ -17,6 +19,7 @@ $string['pass'] = 'Pass';
|
|||
$string['pathdoesnotexist'] = 'The path \'$a\' does not exist.';
|
||||
$string['prefix'] = 'Unit test tables prefix';
|
||||
$string['prefixnotset'] = 'The unit test database table prefix is not configured. Fill and submit this form to add it to config.php.';
|
||||
$string['reinstalltesttables'] = 'Reinstall test tables';
|
||||
$string['retest'] = 'Re-run the tests';
|
||||
$string['retestonlythisfile'] = 'Re-run only this test file.';
|
||||
$string['runall'] = 'Run the tests from all the test files.';
|
||||
|
@ -31,6 +34,7 @@ $string['showsearch'] = 'Show the search for test files.';
|
|||
$string['stacktrace'] = 'Stack trace:';
|
||||
$string['summary'] = '{$a->run}/{$a->total} test cases complete: <strong>{$a->passes}</strong> passes, <strong>{$a->fails}</strong> fails and <strong>{$a->exceptions}</strong> exceptions.';
|
||||
$string['tablesnotsetup'] = 'Unit test tables are not yet built. Do you want to build them now?.';
|
||||
$string['testtablesneedupgrade'] = 'The test DB tables need to be upgraded. Do you wish to proceed with the upgrade now?';
|
||||
$string['testtablesok'] = 'The test DB tables were successfully installed.';
|
||||
$string['testtablescsvfileunwritable'] = 'The test tables CSV file is not writable ($a->filename)';
|
||||
$string['thorough'] = 'Run a thorough test (may be slow).';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue