From 637362a5b6bfc635c165b8144fb466348cd8e280 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Mon, 9 Mar 2015 14:31:19 +0100 Subject: Test: Prefix output with testcase name Signed-off-by: Florian Pritz --- application/controllers/tools.php | 1 + 1 file changed, 1 insertion(+) (limited to 'application/controllers/tools.php') diff --git a/application/controllers/tools.php b/application/controllers/tools.php index 7c8538cfb..ca79ba004 100644 --- a/application/controllers/tools.php +++ b/application/controllers/tools.php @@ -80,6 +80,7 @@ class Tools extends MY_Controller { foreach ($refl->getMethods() as $method) { if (strpos($method->name, "test_") === 0) { try { + $test->setTestNamePrefix($method->name." - "); $test->init(); $test->{$method->name}(); $test->cleanup(); -- cgit v1.2.3-24-g4f1b