From 4bb99024402bb7526de8880f3dab0c1f0858def5 Mon Sep 17 00:00:00 2001 From: Cees-Jan Kiewiet Date: Thu, 5 Apr 2018 14:36:50 +0200 Subject: [PATCH] Missing mocked methods --- tests/FunctionsTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/FunctionsTest.php b/tests/FunctionsTest.php index 2444276..d24d318 100644 --- a/tests/FunctionsTest.php +++ b/tests/FunctionsTest.php @@ -198,17 +198,21 @@ protected function mockLoop() { return $this->getMock('React\EventLoop\LoopInterface', [ 'futureTick', + 'nextTick', 'addReadStream', 'addWriteStream', 'removeReadStream', 'removeWriteStream', + 'removeStream', 'addTimer', 'addPeriodicTimer', 'cancelTimer', + 'isTimerActive', 'addSignal', 'removeSignal', 'run', 'stop', + 'tick', ]); } }