From 5207b29958604eaed6481e58fe5f8b391c4f918d Mon Sep 17 00:00:00 2001 From: Jakub Turek Date: Tue, 17 Feb 2015 21:22:07 +0100 Subject: [PATCH] Remove "covers" annotations for static methods --- tests/MageTest/Command/FactoryTest.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/MageTest/Command/FactoryTest.php b/tests/MageTest/Command/FactoryTest.php index 1920e21..b91f9b6 100644 --- a/tests/MageTest/Command/FactoryTest.php +++ b/tests/MageTest/Command/FactoryTest.php @@ -20,9 +20,6 @@ class FactoryTest extends PHPUnit_Framework_TestCase $this->config = $this->getMock('Mage\Config'); } - /** - * @covers Factory::get - */ public function testGet() { $command = Factory::get('add', $this->config); @@ -31,16 +28,12 @@ class FactoryTest extends PHPUnit_Framework_TestCase /** * @expectedException \Exception - * @covers Factory::get */ public function testGetClassNotFoundException() { $command = Factory::get('commanddoesntexist', $this->config); } - /** - * @covers Factory::get - */ public function testGetCustomCommand() { $this->getMockBuilder('Mage\\Command\\AbstractCommand') @@ -60,7 +53,6 @@ class FactoryTest extends PHPUnit_Framework_TestCase /** * @expectedException \Exception * @expectedExceptionMessage The command MyInconsistentCommand must be an instance of Mage\Command\AbstractCommand. - * @covers Factory::get */ public function testGetInconsistencyException() {