24 lines
508 B
PHP
Executable File
24 lines
508 B
PHP
Executable File
<?php
|
|
|
|
// Use the same autoloader as the app for consistency
|
|
define('BASEPATH', '../');
|
|
define('SLEEPY_DIR', 'Sleepy');
|
|
define('APP_DIR', 'application');
|
|
define('APPPATH', BASEPATH . 'application/');
|
|
include BASEPATH . '/vendor/autoload.php';
|
|
require BASEPATH . SLEEPY_DIR . '/autoload.php';
|
|
|
|
/**
|
|
* Base testcase class
|
|
*/
|
|
class Sleepy_TestCase extends PHPUnit_Framework_TestCase {
|
|
|
|
public function setUp()
|
|
{
|
|
if ( ! isset($_SERVER['REQUEST_METHOD']))
|
|
{
|
|
$_SERVER['REQUEST_METHOD'] = 'GET';
|
|
}
|
|
}
|
|
}
|