Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 723 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 723 Bytes

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.