diff options
author | wei <> | 2006-04-14 05:14:34 +0000 |
---|---|---|
committer | wei <> | 2006-04-14 05:14:34 +0000 |
commit | 7949f7fe746dbbe3eeefbc123bbb2c551b091733 (patch) | |
tree | 3880a5fbad51a2c9aca5ab5c5dc5b01f1a8f2da6 /tests/UnitTests/simpletest/test/shell_tester_test.php | |
parent | 9e21d160ead61cd0ed86c16a0668c50b14f58baf (diff) |
Fixed #93 and #121
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 |