all_tests.php

来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· PHP 代码 · 共 25 行

PHP
25
字号
<?php// $Id: all_tests.php,v 1.1 2003/11/30 17:30:01 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());?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?