Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
37 | public function testReject() |
||
38 | { |
||
39 | parent::testReject(); |
||
40 | |||
41 | $this->innerFailureTest(function (callable $onRejected) { |
||
42 | /** @var \Cubiche\Core\Async\Promise\DoneResolver $resolver */ |
||
43 | $resolver = $this->newTestedInstance(null, $onRejected); |
||
44 | $resolver->reject(); |
||
45 | }); |
||
46 | } |
||
47 | |||
78 |