You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
827 B
PHP
26 lines
827 B
PHP
<?php
|
|
// $Id: socket_test.php,v 1.16 2004/09/24 22:55:19 lastcraft Exp $
|
|
|
|
require_once(dirname(__FILE__) . '/../socket.php');
|
|
|
|
Mock::generate('SimpleSocket');
|
|
|
|
class TestOfSimpleStickyError extends UnitTestCase {
|
|
|
|
function testSettingError() {
|
|
$error = new SimpleStickyError();
|
|
$this->assertFalse($error->isError());
|
|
$error->_setError('Ouch');
|
|
$this->assertTrue($error->isError());
|
|
$this->assertEqual($error->getError(), 'Ouch');
|
|
}
|
|
|
|
function testClearingError() {
|
|
$error = new SimpleStickyError();
|
|
$error->_setError('Ouch');
|
|
$this->assertTrue($error->isError());
|
|
$error->_clearError();
|
|
$this->assertFalse($error->isError());
|
|
}
|
|
}
|
|
?>
|