You are here

public function PromiseTest::testDoesNotUnwrapExceptionsWhenDisabled in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/guzzlehttp/promises/tests/PromiseTest.php \GuzzleHttp\Promise\Tests\PromiseTest::testDoesNotUnwrapExceptionsWhenDisabled()

File

vendor/guzzlehttp/promises/tests/PromiseTest.php, line 100

Class

PromiseTest
@covers GuzzleHttp\Promise\Promise

Namespace

GuzzleHttp\Promise\Tests

Code

public function testDoesNotUnwrapExceptionsWhenDisabled() {
  $p = new Promise(function () use (&$p) {
    $p
      ->reject('foo');
  });
  $this
    ->assertEquals('pending', $p
    ->getState());
  $p
    ->wait(false);
  $this
    ->assertEquals('rejected', $p
    ->getState());
}