aboutsummaryrefslogtreecommitdiff
path: root/tests/AllTests.php
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-10-25 15:31:31 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-10-25 15:31:31 +0000
commit05defe72d8739c0642c506175c0ad4de2293fb99 (patch)
treed160853768776e399c95d3cf83ca3fbf24481325 /tests/AllTests.php
parent9a0aefc28bba04f674d901c6ffd6a9e63628feef (diff)
downloadsemanticscuttle-05defe72d8739c0642c506175c0ad4de2293fb99.tar.gz
semanticscuttle-05defe72d8739c0642c506175c0ad4de2293fb99.tar.bz2
introduce testbase class and make all tests runnable standalone
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@410 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'tests/AllTests.php')
-rw-r--r--tests/AllTests.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/AllTests.php b/tests/AllTests.php
index b1e13b4..4507a5a 100644
--- a/tests/AllTests.php
+++ b/tests/AllTests.php
@@ -32,12 +32,12 @@ class AllTests extends PHPUnit_Framework_TestSuite
{
$suite = new AllTests();
$tdir = dirname(__FILE__);
- $suite->addTestFile($tdir . '/BookmarksTest.php');
+ $suite->addTestFile($tdir . '/BookmarkTest.php');
$suite->addTestFile($tdir . '/Tag2TagTest.php');
$suite->addTestFile($tdir . '/TagsCacheTest.php');
$suite->addTestFile($tdir . '/CommonDescriptionTest.php');
- $suite->addTestFile($tdir . '/SearchTest.php');
- $suite->addTestFile($tdir . '/TagsTest.php');
+ $suite->addTestFile($tdir . '/SearchHistoryTest.php');
+ $suite->addTestFile($tdir . '/TagTest.php');
$suite->addTestFile($tdir . '/VoteTest.php');
return $suite;
}