diff options
author | wei <> | 2006-04-14 06:22:09 +0000 |
---|---|---|
committer | wei <> | 2006-04-14 06:22:09 +0000 |
commit | 3d3f8d3832921f99daf8ce1953304763c2e76c62 (patch) | |
tree | e1b0a9bc3a13fccd253770fb452ac96cc6315121 /tests/UnitTests/simpletest/test/unit_tests.php | |
parent | 373d8acc503b94ea09823f49e2ab5e395eccc584 (diff) |
Importing SQLMap + sample + docs.
Diffstat (limited to 'tests/UnitTests/simpletest/test/unit_tests.php')
-rw-r--r-- | tests/UnitTests/simpletest/test/unit_tests.php | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/tests/UnitTests/simpletest/test/unit_tests.php b/tests/UnitTests/simpletest/test/unit_tests.php deleted file mode 100644 index ebc38ffe..00000000 --- a/tests/UnitTests/simpletest/test/unit_tests.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php
- // $Id: unit_tests.php,v 1.47 2005/02/05 04:51:31 lastcraft Exp $
- if (! defined('TEST')) {
- define('TEST', __FILE__);
- }
- require_once('../unit_tester.php');
- require_once('../web_tester.php');
- require_once('../shell_tester.php');
- require_once('../reporter.php');
- require_once('../mock_objects.php');
- require_once('../extensions/pear_test_case.php');
- require_once('../extensions/phpunit_test_case.php');
-
- class UnitTests extends GroupTest {
- function UnitTests() {
- $this->GroupTest('Unit tests');
- $this->addTestFile('errors_test.php');
- $this->addTestFile('options_test.php');
- $this->addTestFile('dumper_test.php');
- $this->addTestFile('expectation_test.php');
- $this->addTestFile('unit_tester_test.php');
- $this->addTestFile('simple_mock_test.php');
- $this->addTestFile('adapter_test.php');
- $this->addTestFile('socket_test.php');
- $this->addTestFile('encoding_test.php');
- $this->addTestFile('url_test.php');
- $this->addTestFile('http_test.php');
- $this->addTestFile('authentication_test.php');
- $this->addTestFile('user_agent_test.php');
- $this->addTestFile('parser_test.php');
- $this->addTestFile('tag_test.php');
- $this->addTestFile('form_test.php');
- $this->addTestFile('page_test.php');
- $this->addTestFile('frames_test.php');
- $this->addTestFile('browser_test.php');
- $this->addTestFile('web_tester_test.php');
- $this->addTestFile('shell_tester_test.php');
- $this->addTestFile('xml_test.php');
- }
- }
-
- if (TEST == __FILE__) {
- $test = &new UnitTests();
- if (SimpleReporter::inCli()) {
- exit ($test->run(new TextReporter()) ? 0 : 1);
- }
- $test->run(new HtmlReporter());
- }
-?>
\ No newline at end of file |