3f340acd2b
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@429 b3834d28-1941-0410-a4f8-b48e95affb8f
24 lines
689 B
PHP
24 lines
689 B
PHP
<?php
|
|
/**
|
|
* 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
|
|
*/
|
|
|
|
/**
|
|
* Prepare the application for unit testing
|
|
*/
|
|
$_SERVER['HTTP_HOST'] = 'http://localhost/';
|
|
define('UNIT_TEST_MODE', true);
|
|
|
|
require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
|
|
require_once dirname(__FILE__) . '/TestBase.php';
|
|
?>
|