Removing PHPUnit::execute Coverage Tags

This commit is contained in:
Fenikkusu 2016-12-24 17:07:25 +07:00 committed by Dmitry Khomutov
commit 36cb6a020d
7 changed files with 0 additions and 127 deletions

View file

@ -41,9 +41,6 @@ class BuildServiceTest extends \PHPUnit_Framework_TestCase
$this->testedService = new BuildService($this->mockBuildStore);
}
/**
* @covers PHPUnit::execute
*/
public function testExecute_CreateBasicBuild()
{
$project = new Project();
@ -65,9 +62,6 @@ class BuildServiceTest extends \PHPUnit_Framework_TestCase
$this->assertEquals('Manual', $returnValue->getCommitId());
}
/**
* @covers PHPUnit::execute
*/
public function testExecute_CreateBuildWithOptions()
{
$project = new Project();
@ -82,9 +76,6 @@ class BuildServiceTest extends \PHPUnit_Framework_TestCase
$this->assertEquals('test@example.com', $returnValue->getCommitterEmail());
}
/**
* @covers PHPUnit::execute
*/
public function testExecute_CreateBuildWithExtra()
{
$project = new Project();
@ -96,9 +87,6 @@ class BuildServiceTest extends \PHPUnit_Framework_TestCase
$this->assertEquals(1001, $returnValue->getExtra('item1'));
}
/**
* @covers PHPUnit::execute
*/
public function testExecute_CreateDuplicateBuild()
{
$build = new Build();
@ -131,9 +119,6 @@ class BuildServiceTest extends \PHPUnit_Framework_TestCase
$this->assertEquals($build->getExtra('item1'), $returnValue->getExtra('item1'));
}
/**
* @covers PHPUnit::execute
*/
public function testExecute_DeleteBuild()
{
$store = $this->getMock('PHPCensor\Store\BuildStore');