aboutsummaryrefslogtreecommitdiff
path: root/tests/AllTests.php
blob: 4afcc6bfae7a11f2db8032585985f5bbaa17e68f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?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
 */
if (!defined('PHPUnit_MAIN_METHOD')) {
    define('PHPUnit_MAIN_METHOD', 'AllTests::main');
}

require_once 'prepare.php';

/**
 * SemanticScuttle unit tests.
 *
 * To launch this tests, you need PHPUnit 3.
 * Run them with:
 * $ php tests/AllTests.php
 * or single files like:
 * $ php tests/BookmarkTest.php
 *
 * You also may use phpunit directly:
 * $ phpunit tests/AllTests.php
 *
 * @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
 */
class AllTests extends PHPUnit_Framework_TestSuite
{
    public static function main()
    {
        require_once 'PHPUnit/TextUI/TestRunner.php';
        PHPUnit_TextUI_TestRunner::run(self::suite());
    }



    public static function suite()
    {
        $suite = new AllTests();
        $tdir = dirname(__FILE__);
        $suite->addTestFile($tdir . '/BookmarkTest.php');
        $suite->addTestFile($tdir . '/Bookmark2TagTest.php');
        $suite->addTestFile($tdir . '/Tag2TagTest.php');
        $suite->addTestFile($tdir . '/TagsCacheTest.php');
        $suite->addTestFile($tdir . '/CommonDescriptionTest.php');
        $suite->addTestFile($tdir . '/SearchHistoryTest.php');
        $suite->addTestFile($tdir . '/TagTest.php');
        $suite->addTestFile($tdir . '/VoteTest.php');
        $suite->addTestFile($tdir . '/UserTest.php');
        $suite->addTestFile($tdir . '/Api/ExportCsvTest.php');
        $suite->addTestFile($tdir . '/Api/PostsAddTest.php');
        $suite->addTestFile($tdir . '/Api/PostsDeleteTest.php');
        $suite->addTestFile($tdir . '/Api/PostsUpdateTest.php');
        return $suite;
    }



    protected function tearDown()
    {
    }
}

if (PHPUnit_MAIN_METHOD == 'AllTests::main') {
    AllTests::main();
}

?>