mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
b0c384d6c1
svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/roa ........ r53150 | ischommer | 2008-04-22 11:12:43 +1200 (Tue, 22 Apr 2008) | 1 line FEATURE Added a "test mode" for /db/build which allows mock-DataObject-subclasses which are just built in a test run ........ r53681 | mrickerby | 2008-04-29 15:26:52 +1200 (Tue, 29 Apr 2008) | 1 line adding default wrapping header and footer methods, and configurable reporting to the TestRunner ........ r53700 | mrickerby | 2008-04-29 16:41:57 +1200 (Tue, 29 Apr 2008) | 1 line FEATURE: adding support for /dev/tests --> DevelopmentAdmin-->tests() --> TestRunner, /dev/tasks --> DevelopmentAdmin-->tasks() --> TaskRunner ........ r53820 | mrickerby | 2008-04-30 19:27:52 +1200 (Wed, 30 Apr 2008) | 1 line BUGFIX fixing up BuildTask interface and task runner action ........ r54200 | sminnee | 2008-05-09 00:28:44 +1200 (Fri, 09 May 2008) | 1 line Added TestSession object to help with the testing of forms ........ r54459 | sminnee | 2008-05-13 17:28:25 +1200 (Tue, 13 May 2008) | 1 line Added a basic menu of options to /dev ........ git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@54456 467b73ca-7a2a-4603-9d3b-597d59a354a9
37 lines
765 B
PHP
37 lines
765 B
PHP
<?php
|
|
|
|
/**
|
|
* Base class for URL access to development tools. Currently supports the
|
|
* TestRunner and TaskRunner.
|
|
*
|
|
* @todo documentation for how to add new unit tests and tasks
|
|
*/
|
|
class DevelopmentAdmin extends Controller {
|
|
|
|
static $url_handlers = array(
|
|
'' => 'index',
|
|
'$Action' => '$Action'
|
|
);
|
|
|
|
function index() {
|
|
return <<<HTML
|
|
<h1>sapphire development tools</h1>
|
|
<ul>
|
|
<li><a href="dev/tests">/dev/tests: Run all unit tests</a></li>
|
|
<li><a href="dev/tasks">/dev/tasks: See a list of build tasks to run</a></li>
|
|
<li><a href="db/build?flush=1">/db/build?flush=1: Rebuild the database</a></li>
|
|
</ul>
|
|
HTML;
|
|
}
|
|
|
|
function tests() {
|
|
return new TestRunner();
|
|
}
|
|
|
|
function tasks($request) {
|
|
return new TaskRunner();
|
|
}
|
|
|
|
}
|
|
|
|
?>
|