1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 05:11:42 +01:00

Use the same tests as master

This commit is contained in:
Daniel Lowrey 2015-05-25 13:33:06 -04:00
parent 5e7d6ff095
commit 80548311af

View File

@ -398,13 +398,14 @@ abstract class ReactorTest extends \PHPUnit_Framework_TestCase {
public function testOptionalRepeatWatcherDelay() {
$reactor = $this->getReactor();
$watcherId = $reactor->repeat(function($reactor, $watcherId) {
$invoked = false;
$reactor->repeat(function($reactor, $watcherId) use (&$invoked) {
$invoked = true;
$reactor->cancel($watcherId);
}, $msInterval = 10000, $options = ["ms_delay" => 1]);
$startTime = time();
$reactor->once([$reactor, "stop"], 50);
$reactor->run();
$endTime = time();
$this->assertTrue(($endTime - $startTime) < $msInterval);
$this->assertTrue($invoked);
}
public function testOptionalDisable() {