Removing PHPUnit::execute Coverage Tags
This commit is contained in:
parent
f713d3ee0d
commit
36cb6a020d
7 changed files with 0 additions and 127 deletions
|
|
@ -24,9 +24,6 @@ class BuildTest extends \PHPUnit_Framework_TestCase
|
|||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers PHPUnit::execute
|
||||
*/
|
||||
public function testExecute_TestIsAValidModel()
|
||||
{
|
||||
$build = new Build();
|
||||
|
|
@ -35,9 +32,6 @@ class BuildTest extends \PHPUnit_Framework_TestCase
|
|||
$this->assertTrue($build instanceof Model\Base\BuildBase);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers PHPUnit::execute
|
||||
*/
|
||||
public function testExecute_TestBaseBuildDefaults()
|
||||
{
|
||||
$build = new Build();
|
||||
|
|
@ -46,9 +40,6 @@ class BuildTest extends \PHPUnit_Framework_TestCase
|
|||
$this->assertEquals(null, $build->getFileLinkTemplate());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers PHPUnit::execute
|
||||
*/
|
||||
public function testExecute_TestIsSuccessful()
|
||||
{
|
||||
$build = new Build();
|
||||
|
|
@ -65,9 +56,6 @@ class BuildTest extends \PHPUnit_Framework_TestCase
|
|||
$this->assertTrue($build->isSuccessful());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers PHPUnit::execute
|
||||
*/
|
||||
public function testExecute_TestBuildExtra()
|
||||
{
|
||||
$info = [
|
||||
|
|
|
|||
|
|
@ -24,9 +24,6 @@ class ProjectTest extends \PHPUnit_Framework_TestCase
|
|||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers PHPUnit::execute
|
||||
*/
|
||||
public function testExecute_TestIsAValidModel()
|
||||
{
|
||||
$project = new Project();
|
||||
|
|
@ -35,9 +32,6 @@ class ProjectTest extends \PHPUnit_Framework_TestCase
|
|||
$this->assertTrue($project instanceof Model\Base\ProjectBase);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers PHPUnit::execute
|
||||
*/
|
||||
public function testExecute_TestGitDefaultBranch()
|
||||
{
|
||||
$project = new Project();
|
||||
|
|
@ -46,9 +40,6 @@ class ProjectTest extends \PHPUnit_Framework_TestCase
|
|||
$this->assertEquals('master', $project->getBranch());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers PHPUnit::execute
|
||||
*/
|
||||
public function testExecute_TestGithubDefaultBranch()
|
||||
{
|
||||
$project = new Project();
|
||||
|
|
@ -57,9 +48,6 @@ class ProjectTest extends \PHPUnit_Framework_TestCase
|
|||
$this->assertEquals('master', $project->getBranch());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers PHPUnit::execute
|
||||
*/
|
||||
public function testExecute_TestGitlabDefaultBranch()
|
||||
{
|
||||
$project = new Project();
|
||||
|
|
@ -68,9 +56,6 @@ class ProjectTest extends \PHPUnit_Framework_TestCase
|
|||
$this->assertEquals('master', $project->getBranch());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers PHPUnit::execute
|
||||
*/
|
||||
public function testExecute_TestBitbucketDefaultBranch()
|
||||
{
|
||||
$project = new Project();
|
||||
|
|
@ -79,9 +64,6 @@ class ProjectTest extends \PHPUnit_Framework_TestCase
|
|||
$this->assertEquals('master', $project->getBranch());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers PHPUnit::execute
|
||||
*/
|
||||
public function testExecute_TestMercurialDefaultBranch()
|
||||
{
|
||||
$project = new Project();
|
||||
|
|
@ -90,9 +72,6 @@ class ProjectTest extends \PHPUnit_Framework_TestCase
|
|||
$this->assertEquals('default', $project->getBranch());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers PHPUnit::execute
|
||||
*/
|
||||
public function testExecute_TestProjectAccessInformation()
|
||||
{
|
||||
$info = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue