From 3773f8d81c53dd0508325d6380ee49569951a61f Mon Sep 17 00:00:00 2001 From: marcus Date: Wed, 13 May 2009 15:59:22 +0000 Subject: Refs #1009: Enhancements to diagnostics tool to use the test framework. git-svn-id: https://code.elgg.org/elgg/trunk@3286 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/diagnostics/unittester.php | 43 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 mod/diagnostics/unittester.php (limited to 'mod/diagnostics/unittester.php') diff --git a/mod/diagnostics/unittester.php b/mod/diagnostics/unittester.php new file mode 100644 index 000000000..d0aa0c8c4 --- /dev/null +++ b/mod/diagnostics/unittester.php @@ -0,0 +1,43 @@ + $desc) + $test_body .= elgg_view('diagnostics/test', array('function' => $func, 'description' => $desc)); + } + else + $test_body = elgg_echo('diagnostics:unittester:notests'); + + $body = elgg_view('page_elements/contentwrapper', array('body' => + elgg_echo('diagnostics:unittester:description') . + elgg_view('diagnostics/runalltests') + ) + ); + + $body .= elgg_view('page_elements/contentwrapper', array('body' => + $test_body ) + ); + + + page_draw(elgg_echo('diagnostics:unittester'),elgg_view_layout("two_column_left_sidebar", '', $title . $body)); +?> \ No newline at end of file -- cgit v1.2.3