From 38a20c0ece32296c246485149fbe5db161b37a82 Mon Sep 17 00:00:00 2001 From: Stuart Campbell Date: Tue, 18 Sep 2012 14:56:57 +1000 Subject: [PATCH] Add test runner --- tests/all.php | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tests/all.php diff --git a/tests/all.php b/tests/all.php new file mode 100644 index 0000000..c821249 --- /dev/null +++ b/tests/all.php @@ -0,0 +1,27 @@ +#!/usr/bin/env php +collect($filename, $this); + else + parent::handle($test, $filename); + } +} + +class RightSignatureTests extends TestSuite +{ + public function __construct() + { + $this->collect(__DIR__, new RightSignatureTestCollector('#Test\.php$#')); + } +}