@@ -9,11 +9,6 @@ abstract class AbstractTimerTest extends TestCase
99{
1010 abstract public function createLoop ();
1111
12- /**
13- * @covers React\EventLoop\StreamSelectLoop::tick
14- * @covers React\EventLoop\StreamSelectLoop::addTimer
15- * @covers React\EventLoop\Timer\Timers
16- */
1712 public function testAddTimer ()
1813 {
1914 // usleep is intentionally high
@@ -25,11 +20,6 @@ public function testAddTimer()
2520 $ loop ->tick ();
2621 }
2722
28- /**
29- * @covers React\EventLoop\StreamSelectLoop::tick
30- * @covers React\EventLoop\StreamSelectLoop::addTimer
31- * @covers React\EventLoop\Timer\Timers
32- */
3323 public function testAddPeriodicTimer ()
3424 {
3525 $ loop = $ this ->createLoop ();
@@ -43,11 +33,6 @@ public function testAddPeriodicTimer()
4333 $ loop ->tick ();
4434 }
4535
46- /**
47- * @covers React\EventLoop\StreamSelectLoop::tick
48- * @covers React\EventLoop\StreamSelectLoop::addTimer
49- * @covers React\EventLoop\Timer\Timers
50- */
5136 public function testAddPeriodicTimerWithCancel ()
5237 {
5338 $ loop = $ this ->createLoop ();
@@ -65,11 +50,6 @@ public function testAddPeriodicTimerWithCancel()
6550 $ loop ->tick ();
6651 }
6752
68- /**
69- * @covers React\EventLoop\StreamSelectLoop::tick
70- * @covers React\EventLoop\StreamSelectLoop::addTimer
71- * @covers React\EventLoop\Timer\Timers
72- */
7353 public function testAddPeriodicTimerCancelsItself ()
7454 {
7555 $ i = 0 ;
0 commit comments