1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 05:11:42 +01:00
2017-01-07 13:55:45 +01:00
2016-10-24 19:53:21 +02:00
2017-01-07 13:55:45 +01:00
2016-10-24 19:53:21 +02:00
2016-12-23 13:14:11 +01:00

Promise Tests

This package provides a quite extensive phpunit test suite to be used against Promise implementations from the async-interop/promise package.

Usage

class MyDriverTest extends \Interop\Async\Promise\Test {
    function getFactory() {
        return new MyDriverFactory;
    }
    
    function getPromise() {
        $resolver = new MyPromiseResolver;
        return [
            $resolver->promise(),
            function($v) use ($resolver) { $resolver->succeed($v); },
            function($e) use ($resolver) { $resolver->fail($e); },
        ];
    }
}

That's it. Put it in your tests folder with an appropriate phpunit setup and run it.

Description
No description provided
Readme MIT 3 MiB
Languages
PHP 99.4%
Shell 0.3%
Makefile 0.3%