Done static inheritance

Add TestCase
This commit is contained in:
bzick
2013-02-15 01:49:26 +04:00
parent 8c618c2b34
commit ad2e7316b1
12 changed files with 157 additions and 142 deletions

View File

@ -6,4 +6,12 @@ require_once __DIR__."/../vendor/autoload.php";
define('ASPECT_RESOURCES', __DIR__."/resources");
require_once ASPECT_RESOURCES."/actions.php";
require_once ASPECT_RESOURCES."/actions.php";
require_once __DIR__."/TestCase.php";
function drop() {
call_user_func_array("var_dump", func_get_args());
$e = new Exception();
echo "-------\nDump trace: \n".$e->getTraceAsString()."\n";
exit();
}