Skip to content

Commit 5850235

Browse files
committed
removed @Covers annotations in tests
1 parent 66267b2 commit 5850235

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

Tests/DefinitionTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ public function testConstructor()
2424
$this->assertEquals(array('foo'), $def->getArguments(), '__construct() takes an optional array of arguments as its second argument');
2525
}
2626

27-
/**
28-
* @covers Symfony\Component\DependencyInjection\Definition::setFactory
29-
* @covers Symfony\Component\DependencyInjection\Definition::getFactory
30-
*/
3127
public function testSetGetFactory()
3228
{
3329
$def = new Definition('stdClass');

Tests/LegacyContainerBuilderTest.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
*/
2020
class LegacyContainerBuilderTest extends \PHPUnit_Framework_TestCase
2121
{
22-
/**
23-
* @covers Symfony\Component\DependencyInjection\ContainerBuilder::createService
24-
*/
2522
public function testCreateServiceFactoryMethod()
2623
{
2724
$builder = new ContainerBuilder();
@@ -32,9 +29,6 @@ public function testCreateServiceFactoryMethod()
3229
$this->assertEquals(array('foo' => 'bar', 'bar' => 'foo', $builder->get('bar')), $builder->get('foo1')->arguments, '->createService() passes the arguments to the factory method');
3330
}
3431

35-
/**
36-
* @covers Symfony\Component\DependencyInjection\ContainerBuilder::createService
37-
*/
3832
public function testCreateServiceFactoryService()
3933
{
4034
$builder = new ContainerBuilder();

0 commit comments

Comments
 (0)