Removing the old coverage reporter from the unit test system
authorRobert Sesek <rsesek@bluestatic.org>
Mon, 20 Aug 2007 16:30:10 +0000 (09:30 -0700)
committerRobert Sesek <rsesek@bluestatic.org>
Mon, 20 Aug 2007 16:30:10 +0000 (09:30 -0700)
* UnitTest/Coverage.php: Removed

UnitTest/Coverage.php [deleted file]

diff --git a/UnitTest/Coverage.php b/UnitTest/Coverage.php
deleted file mode 100644 (file)
index 130d6ae..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-<?php
-/*=====================================================================*
-|| ###################################################################
-|| # Bugdar [#]version[#]
-|| # Copyright (c)2002-2007 Blue Static
-|| #
-|| # This program is free software; you can redistribute it and/or modify
-|| # it under the terms of the GNU General Public License as published by
-|| # the Free Software Foundation; version 2 of the License.
-|| #
-|| # This program is distributed in the hope that it will be useful, but
-|| # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-|| # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
-|| # more details.
-|| #
-|| # You should have received a copy of the GNU General Public License along
-|| # with this program; if not, write to the Free Software Foundation, Inc.,
-|| # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
-|| ###################################################################
-\*=====================================================================*/
-
-require_once('/Server/lib/php/Spike/src/CoverageRecorder.php');
-require_once('/Server/lib/php/Spike/src/reporter/HtmlCoverageReporter.php');
-
-$reporter = new HtmlCoverageReporter('Code Coverage Report', null, '/Server/htdocs/ISSO/docs/UnitTest/coverage/');
-
-$include = array('/Server/htdocs/ISSO/');
-$exclude = array('/Server/htdocs/ISSO/docs/');
-
-$coverage = new CoverageRecorder($include, $exclude, $reporter);
-
-$coverage->startInstrumentation();
-require_once('AllTests.php');
-$coverage->stopInstrumentation();
-
-$coverage->generateReport();
-$reporter->printTextSummary();
-
-/*=====================================================================*
-|| ###################################################################
-|| # $HeadURL$
-|| # $Id$
-|| ###################################################################
-\*=====================================================================*/
-?>
\ No newline at end of file