Skip to content

Commit 205365f

Browse files
committed
removed all @Covers annotations
1 parent 7c334a2 commit 205365f

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

Tests/Helper/HelperSetTest.php

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616

1717
class HelperSetTest extends \PHPUnit_Framework_TestCase
1818
{
19-
/**
20-
* @covers \Symfony\Component\Console\Helper\HelperSet::__construct
21-
*/
2219
public function testConstructor()
2320
{
2421
$mock_helper = $this->getGenericMockHelper('fake_helper');
@@ -28,9 +25,6 @@ public function testConstructor()
2825
$this->assertTrue($helperset->has('fake_helper_alias'), '__construct sets helper alias for given helper');
2926
}
3027

31-
/**
32-
* @covers \Symfony\Component\Console\Helper\HelperSet::set
33-
*/
3428
public function testSet()
3529
{
3630
$helperset = new HelperSet();
@@ -49,19 +43,13 @@ public function testSet()
4943
$this->assertTrue($helperset->has('fake_helper_alias'), '->set() adds helper alias when set');
5044
}
5145

52-
/**
53-
* @covers \Symfony\Component\Console\Helper\HelperSet::has
54-
*/
5546
public function testHas()
5647
{
5748
$helperset = new HelperSet(array('fake_helper_alias' => $this->getGenericMockHelper('fake_helper')));
5849
$this->assertTrue($helperset->has('fake_helper'), '->has() finds set helper');
5950
$this->assertTrue($helperset->has('fake_helper_alias'), '->has() finds set helper by alias');
6051
}
6152

62-
/**
63-
* @covers \Symfony\Component\Console\Helper\HelperSet::get
64-
*/
6553
public function testGet()
6654
{
6755
$helper_01 = $this->getGenericMockHelper('fake_helper_01');
@@ -82,9 +70,6 @@ public function testGet()
8270
}
8371
}
8472

85-
/**
86-
* @covers \Symfony\Component\Console\Helper\HelperSet::setCommand
87-
*/
8873
public function testSetCommand()
8974
{
9075
$cmd_01 = new Command('foo');
@@ -100,9 +85,6 @@ public function testSetCommand()
10085
$this->assertEquals($cmd_02, $helperset->getCommand(), '->setCommand() overwrites stored command with consecutive calls');
10186
}
10287

103-
/**
104-
* @covers \Symfony\Component\Console\Helper\HelperSet::getCommand
105-
*/
10688
public function testGetCommand()
10789
{
10890
$cmd = new Command('foo');

0 commit comments

Comments
 (0)