Skip to content

Commit 53b0f35

Browse files
committed
Remove @Covers annotations from abstract timer test
1 parent 3c3362a commit 53b0f35

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

tests/React/Tests/EventLoop/Timer/AbstractTimerTest.php

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)