You are here

public function RejectedPromiseTest::testCanRejectWithSameValue in Zircon Profile 8

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

File

vendor/guzzlehttp/promises/tests/RejectedPromiseTest.php, line 52

Class

RejectedPromiseTest
@covers GuzzleHttp\Promise\RejectedPromise

Namespace

GuzzleHttp\Promise\Tests

Code

public function testCanRejectWithSameValue() {
  $p = new RejectedPromise('foo');
  $p
    ->reject('foo');
}