rhymix/tests/Bootstrap.php
2013-11-08 05:52:51 +00:00

26 lines
648 B
PHP

<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
if(!defined('__DEBUG__')) define('__DEBUG__', 1);
if(!defined('__XE__')) define('__XE__', true);
if(!defined('__ZBXE__')) define('__ZBXE__', true);
if(!defined('_XE_PATH_')) define('_XE_PATH_', realpath(dirname(__FILE__).'/../').'/');
$_SERVER['SCRIPT_NAME'] = '/xe/index.php';
error_reporting(E_ALL & ~E_NOTICE);
/**
* Print out the message
**/
function _log($msg) {
$args = func_get_args();
foreach($args as $arg) {
fwrite(STDOUT, "\n");
fwrite(STDOUT, print_r($arg, true));
}
fwrite(STDOUT, "\n");
}
/* End of file Bootstrap.php */
/* Location: ./tests/Bootstrap.php */