You are here

public function PromiseTest::testCannotResolveNonPendingPromise in Zircon Profile 8

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

@expectedException \LogicException @expectedExceptionMessage The promise is already fulfilled

File

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

Class

PromiseTest
@covers GuzzleHttp\Promise\Promise

Namespace

GuzzleHttp\Promise\Tests

Code

public function testCannotResolveNonPendingPromise() {
  $p = new Promise();
  $p
    ->resolve('foo');
  $p
    ->resolve('bar');
  $this
    ->assertEquals('foo', $p
    ->wait());
}