diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-17 15:32:23 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-17 15:32:23 +0000 |
commit | ccb5a69319a6a367988534296c678c8abf322879 (patch) | |
tree | 39e16ed3a8f4c70e68cd6bc9ac76b49d177d5ad8 /mod/diagnostics/testreport.php | |
parent | 287ea7790c170e4f5c13c721e759f1a37ed5ef02 (diff) | |
download | elgg-ccb5a69319a6a367988534296c678c8abf322879.tar.gz elgg-ccb5a69319a6a367988534296c678c8abf322879.tar.bz2 |
Fixes #1526: Big honking warning added to unit tests. Getter test also deletes its subtypes now.
git-svn-id: http://code.elgg.org/elgg/trunk@3945 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/diagnostics/testreport.php')
-rw-r--r-- | mod/diagnostics/testreport.php | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/mod/diagnostics/testreport.php b/mod/diagnostics/testreport.php deleted file mode 100644 index 2068ec280..000000000 --- a/mod/diagnostics/testreport.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php - /** - * Elgg diagnostics - test report - * - * @package ElggDiagnostics - * @author Curverider Ltd - * @link http://elgg.com/ - */ - - require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - - admin_gatekeeper(); - set_context('admin'); - // Set admin user for user block - set_page_owner($_SESSION['guid']); - - // Which test are we executing? - $test_func = get_input('test_func'); - - $title_txt = sprintf(elgg_echo('diagnostics:unittester:report'), $test_func ? $testfunc : elgg_echo('diagnostics:test:executeall')); - - $title = elgg_view_title(); - - $result = null; - if ($test_func) - $result = array(execute_elgg_test($test_func)); - else - $result = execute_elgg_tests(); - - if ($result) - { - foreach ($result as $r) - $body .= elgg_view('page_elements/contentwrapper', array('body' => - elgg_view('diagnostics/testresult', array('function' => $r['function'], 'result' => $r['result'])) - )); - } - else - $body = elgg_view('page_elements/contentwrapper', array('body' => - elgg_echo('diagnostics:unittester:testnotfound' ) - )); - - page_draw($title_txt, elgg_view_layout("two_column_left_sidebar", '', $title . $body)); -?>
\ No newline at end of file |