fenom/tests/autoload.php

16 lines
355 B
PHP
Raw Normal View History

2013-01-25 18:36:16 +04:00
<?php
2014-05-06 10:32:49 +04:00
require(__DIR__ . "/../src/Fenom.php");
Fenom::registerAutoload();
2013-01-25 18:36:16 +04:00
2013-07-29 14:58:14 +04:00
define('FENOM_RESOURCES', __DIR__ . "/resources");
2013-01-25 18:36:16 +04:00
2013-07-29 14:58:14 +04:00
require_once FENOM_RESOURCES . "/actions.php";
require_once __DIR__ . "/TestCase.php";
require_once __DIR__ . "/tools.php";
2013-02-15 01:49:26 +04:00
2013-07-24 19:37:07 +04:00
ini_set('date.timezone', 'Europe/Moscow');
2014-05-06 23:26:28 +04:00
if(PHP_VERSION_ID > 50400) {
function php_gte_54() {}
2013-02-15 01:49:26 +04:00
}