SimpleErrorQueue::setTestCase PHP Method

setTestCase() public method

Sets the currently running test case.
public setTestCase ( SimpleTestCase $test )
$test SimpleTestCase Test case to send messages to.
    public function setTestCase($test)
    {
        $this->test = $test;
    }

Usage Example

コード例 #1
0
ファイル: errors_test.php プロジェクト: Clansuite/Clansuite
 public function testExpectationMatchCancelsIncomingError()
 {
     $test = new MockSimpleTestCase();
     $test->expectOnce('assert', array(new IdenticalExpectation(new AnythingExpectation()), 'B', 'a message'));
     $test->setReturnValue('assert', true);
     $test->expectNever('error');
     $queue = new SimpleErrorQueue();
     $queue->setTestCase($test);
     $queue->expectError(new AnythingExpectation(), 'a message');
     $queue->add(1024, 'B', 'b.php', 100);
 }
All Usage Examples Of SimpleErrorQueue::setTestCase