Kraken\_Unit\Promise\_Partial\PromiseCancelledPartial::testApiDone_ThrowsException_WhenHandlerThrowsInCancellation_ForCancelledPromise PHP Метод

testApiDone_ThrowsException_WhenHandlerThrowsInCancellation_ForCancelledPromise() публичный Метод

    public function testApiDone_ThrowsException_WhenHandlerThrowsInCancellation_ForCancelledPromise()
    {
        $deferred = $this->createDeferred();
        $test = $this->getTest();
        $test->setExpectedException(Exception::class, 'CancellationException');
        $deferred->cancel(1);
        $test->assertNull($deferred->getPromise()->done(null, null, function () {
            throw new Exception('CancellationException');
        }));
    }
PromiseCancelledPartial