From d90de2ac495cd92b3cb847027161716696ceb76e Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Tue, 4 Jan 2011 18:44:26 +0100 Subject: [PATCH] Add autoloader. --- framework/Support/test/Horde/Support/ArrayTest.php | 5 +++++ framework/Support/test/Horde/Support/BacktraceTest.php | 5 +++++ framework/Support/test/Horde/Support/CombineStreamTest.php | 5 +++++ framework/Support/test/Horde/Support/GuidTest.php | 5 +++++ framework/Support/test/Horde/Support/InflectorTest.php | 5 +++++ framework/Support/test/Horde/Support/RandomidTest.php | 5 +++++ framework/Support/test/Horde/Support/StackTest.php | 5 +++++ framework/Support/test/Horde/Support/StringStreamTest.php | 5 +++++ framework/Support/test/Horde/Support/StubTest.php | 5 +++++ framework/Support/test/Horde/Support/TimerTest.php | 5 +++++ framework/Support/test/Horde/Support/UuidTest.php | 5 +++++ 11 files changed, 55 insertions(+) diff --git a/framework/Support/test/Horde/Support/ArrayTest.php b/framework/Support/test/Horde/Support/ArrayTest.php index e39e7a9e8..bf4dfa1a2 100644 --- a/framework/Support/test/Horde/Support/ArrayTest.php +++ b/framework/Support/test/Horde/Support/ArrayTest.php @@ -8,6 +8,11 @@ */ /** + * Prepare the test setup. + */ +require_once dirname(__FILE__) . '/Autoload.php'; + +/** * @category Horde * @package Support * @subpackage UnitTests diff --git a/framework/Support/test/Horde/Support/BacktraceTest.php b/framework/Support/test/Horde/Support/BacktraceTest.php index 5353488ce..b3242f833 100644 --- a/framework/Support/test/Horde/Support/BacktraceTest.php +++ b/framework/Support/test/Horde/Support/BacktraceTest.php @@ -7,6 +7,11 @@ * @license http://opensource.org/licenses/bsd-license.php */ +/** + * Prepare the test setup. + */ +require_once dirname(__FILE__) . '/Autoload.php'; + function backtraceTestFunction() { return debug_backtrace(false); diff --git a/framework/Support/test/Horde/Support/CombineStreamTest.php b/framework/Support/test/Horde/Support/CombineStreamTest.php index b102cf598..0d21239b4 100644 --- a/framework/Support/test/Horde/Support/CombineStreamTest.php +++ b/framework/Support/test/Horde/Support/CombineStreamTest.php @@ -8,6 +8,11 @@ */ /** + * Prepare the test setup. + */ +require_once dirname(__FILE__) . '/Autoload.php'; + +/** * @group support * @category Horde * @package Support diff --git a/framework/Support/test/Horde/Support/GuidTest.php b/framework/Support/test/Horde/Support/GuidTest.php index 5a6ef5226..3c94abe04 100644 --- a/framework/Support/test/Horde/Support/GuidTest.php +++ b/framework/Support/test/Horde/Support/GuidTest.php @@ -8,6 +8,11 @@ */ /** + * Prepare the test setup. + */ +require_once dirname(__FILE__) . '/Autoload.php'; + +/** * @category Horde * @package Support * @subpackage UnitTests diff --git a/framework/Support/test/Horde/Support/InflectorTest.php b/framework/Support/test/Horde/Support/InflectorTest.php index 22ec84a1d..4d0f0a588 100644 --- a/framework/Support/test/Horde/Support/InflectorTest.php +++ b/framework/Support/test/Horde/Support/InflectorTest.php @@ -8,6 +8,11 @@ */ /** + * Prepare the test setup. + */ +require_once dirname(__FILE__) . '/Autoload.php'; + +/** * @group support * @category Horde * @package Support diff --git a/framework/Support/test/Horde/Support/RandomidTest.php b/framework/Support/test/Horde/Support/RandomidTest.php index 052e111e3..c9998f45f 100644 --- a/framework/Support/test/Horde/Support/RandomidTest.php +++ b/framework/Support/test/Horde/Support/RandomidTest.php @@ -8,6 +8,11 @@ */ /** + * Prepare the test setup. + */ +require_once dirname(__FILE__) . '/Autoload.php'; + +/** * @category Horde * @package Support * @subpackage UnitTests diff --git a/framework/Support/test/Horde/Support/StackTest.php b/framework/Support/test/Horde/Support/StackTest.php index 17e590aa2..77ec7d12a 100644 --- a/framework/Support/test/Horde/Support/StackTest.php +++ b/framework/Support/test/Horde/Support/StackTest.php @@ -8,6 +8,11 @@ */ /** + * Prepare the test setup. + */ +require_once dirname(__FILE__) . '/Autoload.php'; + +/** * @category Horde * @package Support * @subpackage UnitTests diff --git a/framework/Support/test/Horde/Support/StringStreamTest.php b/framework/Support/test/Horde/Support/StringStreamTest.php index 8ab437b95..fd8d18c9e 100644 --- a/framework/Support/test/Horde/Support/StringStreamTest.php +++ b/framework/Support/test/Horde/Support/StringStreamTest.php @@ -8,6 +8,11 @@ */ /** + * Prepare the test setup. + */ +require_once dirname(__FILE__) . '/Autoload.php'; + +/** * @group support * @category Horde * @package Support diff --git a/framework/Support/test/Horde/Support/StubTest.php b/framework/Support/test/Horde/Support/StubTest.php index a22cb5dee..6e403e641 100644 --- a/framework/Support/test/Horde/Support/StubTest.php +++ b/framework/Support/test/Horde/Support/StubTest.php @@ -8,6 +8,11 @@ */ /** + * Prepare the test setup. + */ +require_once dirname(__FILE__) . '/Autoload.php'; + +/** * @group support * @category Horde * @package Support diff --git a/framework/Support/test/Horde/Support/TimerTest.php b/framework/Support/test/Horde/Support/TimerTest.php index 78a3b3e63..197da99b4 100644 --- a/framework/Support/test/Horde/Support/TimerTest.php +++ b/framework/Support/test/Horde/Support/TimerTest.php @@ -8,6 +8,11 @@ */ /** + * Prepare the test setup. + */ +require_once dirname(__FILE__) . '/Autoload.php'; + +/** * @group support * @category Horde * @package Support diff --git a/framework/Support/test/Horde/Support/UuidTest.php b/framework/Support/test/Horde/Support/UuidTest.php index 721dcb574..07e796f3d 100644 --- a/framework/Support/test/Horde/Support/UuidTest.php +++ b/framework/Support/test/Horde/Support/UuidTest.php @@ -8,6 +8,11 @@ */ /** + * Prepare the test setup. + */ +require_once dirname(__FILE__) . '/Autoload.php'; + +/** * @category Horde * @package Support * @subpackage UnitTests -- 2.11.0