2008-09-16 12:19:43 +00:00
|
|
|
<?PHP // $Id$
|
2007-08-30 20:19:58 +00:00
|
|
|
// simpletest.php - created with Moodle 1.7 beta + (2006101003)
|
|
|
|
|
|
|
|
|
|
|
|
$string['all'] = 'ALL';
|
2008-09-16 12:19:43 +00:00
|
|
|
$string['addconfigprefix'] = 'Add prefix to config file';
|
2008-09-19 14:28:22 +00:00
|
|
|
$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).';
|
2007-08-30 20:19:58 +00:00
|
|
|
$string['exception'] = 'Exception';
|
|
|
|
$string['fail'] = 'Fail';
|
|
|
|
$string['ignorefile'] = 'Ignore tests in the file';
|
|
|
|
$string['ignorethisfile'] = 'Re-run the tests ignoring this test file.';
|
|
|
|
$string['moodleunittests'] = 'Moodle unit tests: $a';
|
|
|
|
$string['notice'] = 'Notice';
|
|
|
|
$string['onlytest'] = 'Only run tests in';
|
|
|
|
$string['pass'] = 'Pass';
|
|
|
|
$string['pathdoesnotexist'] = 'The path \'$a\' does not exist.';
|
2008-09-16 12:19:43 +00:00
|
|
|
$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.';
|
2007-08-30 20:19:58 +00:00
|
|
|
$string['retest'] = 'Re-run the tests';
|
|
|
|
$string['retestonlythisfile'] = 'Re-run only this test file.';
|
|
|
|
$string['runall'] = 'Run the tests from all the test files.';
|
|
|
|
$string['runat'] = 'Run at $a.';
|
2008-08-20 06:46:41 +00:00
|
|
|
$string['rundbtests'] = 'Run the database tests too.';
|
2007-08-30 20:19:58 +00:00
|
|
|
$string['runonlyfile'] = 'Run only the tests in this file';
|
|
|
|
$string['runonlyfolder'] = 'Run only the tests in this folder';
|
|
|
|
$string['runtests'] = 'Run tests';
|
|
|
|
$string['rununittests'] = 'Run the unit tests';
|
|
|
|
$string['showpasses'] = 'Show passes as well as fails.';
|
|
|
|
$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.';
|
2008-09-16 12:19:43 +00:00
|
|
|
$string['tablesnotsetup'] = 'Unit test tables are not yet built. Do you want to build them now?.';
|
2008-09-19 14:28:22 +00:00
|
|
|
$string['testtablescsvfileunwritable'] = 'The test tables CSV file is not writable ($a->filename)';
|
2007-08-30 20:19:58 +00:00
|
|
|
$string['thorough'] = 'Run a thorough test (may be slow).';
|
2008-09-19 14:28:22 +00:00
|
|
|
$string['updatingnoninsertedrecord'] = 'Trying to update a record that was not inserted by these unit tests (id $a->id in table $a->table).';
|
2007-08-30 20:19:58 +00:00
|
|
|
$string['uncaughtexception'] = 'Uncaught exception [{$a->getMessage()}] in [{$a->getFile()}:{$a->getLine()}] TESTS ABORTED.';
|
|
|
|
$string['unittests'] = 'Unit tests';
|
|
|
|
$string['version'] = 'Using <a href=\"http://sourceforge.net/projects/simpletest/\">SimpleTest</a> version $a.';
|
|
|
|
|
|
|
|
?>
|