@@ -9,11 +9,6 @@ abstract class AbstractTimerTest extends TestCase
9
9
{
10
10
abstract public function createLoop ();
11
11
12
- /**
13
- * @covers React\EventLoop\StreamSelectLoop::tick
14
- * @covers React\EventLoop\StreamSelectLoop::addTimer
15
- * @covers React\EventLoop\Timer\Timers
16
- */
17
12
public function testAddTimer ()
18
13
{
19
14
// usleep is intentionally high
@@ -25,11 +20,6 @@ public function testAddTimer()
25
20
$ loop ->tick ();
26
21
}
27
22
28
- /**
29
- * @covers React\EventLoop\StreamSelectLoop::tick
30
- * @covers React\EventLoop\StreamSelectLoop::addTimer
31
- * @covers React\EventLoop\Timer\Timers
32
- */
33
23
public function testAddPeriodicTimer ()
34
24
{
35
25
$ loop = $ this ->createLoop ();
@@ -43,11 +33,6 @@ public function testAddPeriodicTimer()
43
33
$ loop ->tick ();
44
34
}
45
35
46
- /**
47
- * @covers React\EventLoop\StreamSelectLoop::tick
48
- * @covers React\EventLoop\StreamSelectLoop::addTimer
49
- * @covers React\EventLoop\Timer\Timers
50
- */
51
36
public function testAddPeriodicTimerWithCancel ()
52
37
{
53
38
$ loop = $ this ->createLoop ();
@@ -65,11 +50,6 @@ public function testAddPeriodicTimerWithCancel()
65
50
$ loop ->tick ();
66
51
}
67
52
68
- /**
69
- * @covers React\EventLoop\StreamSelectLoop::tick
70
- * @covers React\EventLoop\StreamSelectLoop::addTimer
71
- * @covers React\EventLoop\Timer\Timers
72
- */
73
53
public function testAddPeriodicTimerCancelsItself ()
74
54
{
75
55
$ i = 0 ;
0 commit comments