D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
lampp
/
lib
/
php
/
test
/
Pager
/
tests
/
Filename :
all_tests.php
back
Copy
<?php // $Id: all_tests.php,v 1.2 2008/11/14 15:46:33 quipo Exp $ require_once 'simple_include.php'; require_once 'pager_include.php'; define('TEST_RUNNING', true); require_once './pager_tests.php'; require_once './pager_jumping_tests.php'; require_once './pager_sliding_tests.php'; class AllTests extends GroupTest { function AllTests() { $this->GroupTest('All PEAR::Pager Tests'); $this->AddTestCase(new PagerTests()); $this->AddTestCase(new PagerJumpingTests()); $this->AddTestCase(new PagerSlidingTests()); } } $test = new AllTests(); $test->run(new HtmlReporter()); ?>