1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
Go to file
2016-10-26 15:39:11 +02:00
src Fix #1 (onSignal handlers are unordered) 2016-10-26 15:39:11 +02:00
.gitignore Initial commit 2016-05-27 03:25:55 +02:00
composer.json Update loop dependency 2016-09-09 17:58:53 -05:00
LICENSE Initial commit 2016-05-27 03:25:55 +02:00
README.md Initial commit 2016-05-27 03:25:55 +02:00

Event Loop Tests

This package provides a quite extensive phpunit test suite to be used against Loop\Driver implementations from the async-interop/event-loop package.

Usage

class MyDriverTest extends \Interop\Async\Loop\Test {
    function getFactory() {
        return new MyDriverFactory;
    }
}

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