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/shell_tester_test.php | |
parent | 373d8acc503b94ea09823f49e2ab5e395eccc584 (diff) |
Importing SQLMap + sample + docs.
Diffstat (limited to 'tests/UnitTests/simpletest/test/shell_tester_test.php')
-rw-r--r-- | tests/UnitTests/simpletest/test/shell_tester_test.php | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/tests/UnitTests/simpletest/test/shell_tester_test.php b/tests/UnitTests/simpletest/test/shell_tester_test.php deleted file mode 100644 index 5a8f5b59..00000000 --- a/tests/UnitTests/simpletest/test/shell_tester_test.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php
- // $Id: shell_tester_test.php,v 1.5 2004/09/24 22:55:18 lastcraft Exp $
-
- Mock::generate('SimpleShell');
-
- class TestOfShellTestCase extends ShellTestCase {
- var $_mock_shell = false;
-
- function &_getShell() {
- return $this->_mock_shell;
- }
-
- function testExitCode() {
- $this->_mock_shell = &new MockSimpleShell($this);
- $this->_mock_shell->setReturnValue('execute', 0);
- $this->_mock_shell->expectOnce('execute', array('ls'));
- $this->assertTrue($this->execute('ls'));
- $this->assertExitCode(0);
- $this->_mock_shell->tally();
- }
-
- function testOutput() {
- $this->_mock_shell = &new MockSimpleShell($this);
- $this->_mock_shell->setReturnValue('execute', 0);
- $this->_mock_shell->setReturnValue('getOutput', "Line 1\nLine 2\n");
- $this->assertOutput("Line 1\nLine 2\n");
- }
-
- function testOutputPatterns() {
- $this->_mock_shell = &new MockSimpleShell($this);
- $this->_mock_shell->setReturnValue('execute', 0);
- $this->_mock_shell->setReturnValue('getOutput', "Line 1\nLine 2\n");
- $this->assertOutputPattern('/line/i');
- $this->assertNoOutputPattern('/line 2/');
- }
- }
-?>
\ No newline at end of file |