public function FulfilledPromiseTest::testReturnsSelfWhenNoOnFulfilled in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/promises/tests/FulfilledPromiseTest.php \GuzzleHttp\Tests\Promise\FulfilledPromiseTest::testReturnsSelfWhenNoOnFulfilled()
File
- vendor/
guzzlehttp/ promises/ tests/ FulfilledPromiseTest.php, line 61
Class
Namespace
GuzzleHttp\Tests\PromiseCode
public function testReturnsSelfWhenNoOnFulfilled() {
$p = new FulfilledPromise('a');
$this
->assertSame($p, $p
->then());
}