| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 23 | public function testResolve() |
||
| 24 | { |
||
| 25 | parent::testResolve(); |
||
| 26 | |||
| 27 | $this->innerFailureTest(function (callable $onFulfilled) { |
||
| 28 | /** @var \Cubiche\Core\Async\Promise\DoneResolver $resolver */ |
||
| 29 | $resolver = $this->newTestedInstance($onFulfilled); |
||
| 30 | $resolver->resolve(); |
||
| 31 | }); |
||
| 32 | } |
||
| 33 | |||
| 78 |