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