2009-10-04 01:25:07 +02:00
|
|
|
<?php
|
2009-10-26 07:39:59 +01:00
|
|
|
/**
|
|
|
|
* SemanticScuttle - your social bookmark manager.
|
|
|
|
*
|
|
|
|
* PHP version 5.
|
|
|
|
*
|
|
|
|
* @category Bookmarking
|
|
|
|
* @package SemanticScuttle
|
|
|
|
* @author Benjamin Huynh-Kim-Bang <mensonge@users.sourceforge.net>
|
|
|
|
* @author Christian Weiske <cweiske@cweiske.de>
|
|
|
|
* @author Eric Dane <ericdane@users.sourceforge.net>
|
|
|
|
* @license GPL http://www.gnu.org/licenses/gpl.html
|
|
|
|
* @link http://sourceforge.net/projects/semanticscuttle
|
|
|
|
*/
|
|
|
|
|
2009-10-04 01:25:07 +02:00
|
|
|
/**
|
|
|
|
* Prepare the application for unit testing
|
|
|
|
*/
|
|
|
|
$_SERVER['HTTP_HOST'] = 'http://localhost/';
|
|
|
|
define('UNIT_TEST_MODE', true);
|
2009-10-24 10:01:07 +02:00
|
|
|
|
2009-10-25 16:31:31 +01:00
|
|
|
require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
|
|
|
|
require_once dirname(__FILE__) . '/TestBase.php';
|
2009-10-04 01:25:07 +02:00
|
|
|
?>
|