Silverstripe easy test

This commit is contained in:
Tony Air 2020-04-01 02:42:34 +07:00
parent 1577e974d1
commit c4797a678c
1 changed files with 15 additions and 0 deletions

15
test.php Normal file
View File

@ -0,0 +1,15 @@
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
require_once('vendor/autoload.php');
require_once('framework/core/Constants.php');
require_once('app/code/Tasks/TestServer.php');
$req = new \SilverStripe\Control\NullHTTPRequest();
$t = new \Site\Tests\TestServer();
$t->run($req);