diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-10-03 23:18:49 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-10-03 23:18:49 +0000 |
commit | de031f043f9918424b26534d233df90b7d5c42f9 (patch) | |
tree | 679d307a234c71872194f36236cd8d38e3293955 /tests/allTests.php | |
parent | d5f09b7e4d802cdc2d5f3f876c48ea918c961488 (diff) | |
download | semanticscuttle-de031f043f9918424b26534d233df90b7d5c42f9.tar.gz semanticscuttle-de031f043f9918424b26534d233df90b7d5c42f9.tar.bz2 |
make tests run again (though they do not pass)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@389 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'tests/allTests.php')
-rw-r--r-- | tests/allTests.php | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/tests/allTests.php b/tests/allTests.php deleted file mode 100644 index 843911c..0000000 --- a/tests/allTests.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php - -/* -* To launch all tests, type the following line into the root directory -* of SemanticScuttle (where is the config.inc.php file) : -* -* phpunit --testdox-html tests/dox.html AllTests tests/allTests.php -* -* !!Check that $debugMode = false in config.inc.php to avoid unstable beahviours!! -* -* A dox.html file will be created into the tests/ directory providing a summary -* of tests according to agile development. -* */ - -class AllTests extends PHPUnit_Framework_TestSuite -{ - public static function suite() - { - $suite = new AllTests(); - $suite->addTestFile('tests/bookmarksTest.php'); - $suite->addTestFile('tests/tag2TagTest.php'); - $suite->addTestFile('tests/tagsCacheTest.php'); - $suite->addTestFile('tests/commonDescriptionTest.php'); - $suite->addTestFile('tests/searchTest.php'); - $suite->addTestFile('tests/tagsTest.php'); - return $suite; - } - - protected function setUp() - { - global $dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist, $dbtype, $tableprefix, $TEMPLATES_DIR, $filetypes, $debugMode; - require_once('./header.inc.php'); - } - - protected function tearDown() - { - } -} -?>
\ No newline at end of file |