You are here

public function FunctionsTest::testUnwrapsPromisesWithNoDefaultAndFailure in Zircon Profile 8

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

@expectedException \GuzzleHttp\Promise\RejectionException

File

vendor/guzzlehttp/promises/tests/functionsTest.php, line 65

Class

FunctionsTest

Namespace

GuzzleHttp\Promise\Tests

Code

public function testUnwrapsPromisesWithNoDefaultAndFailure() {
  $promises = [
    new FulfilledPromise('a'),
    new Promise(),
  ];
  \GuzzleHttp\Promise\unwrap($promises);
}