fix PhpUnit test caseing.

This commit is contained in:
steve.brazier 2013-12-06 15:17:17 +00:00
parent 4b16077428
commit 52a908009d

View file

@ -9,7 +9,7 @@
namespace PHPCI\Plugin\Tests;
use PHPCI\Plugin\PHPUnit;
use PHPCI\Plugin\PhpUnit;
/**
* Unit test for the PHPUnit plugin.
@ -19,7 +19,7 @@ class PHPUnitTest extends \PHPUnit_Framework_TestCase
{
/**
* @var PHPUnit $testedPhpUnit
* @var PhpUnit $testedPhpUnit
*/
protected $testedPhpUnit;
@ -57,7 +57,7 @@ class PHPUnitTest extends \PHPUnit_Framework_TestCase
protected function loadPhpUnitWithOptions($arrOptions = array())
{
$this->testedPhpUnit = new PHPUnit($this->mockCiBuilder, $this->mockBuild, $arrOptions);
$this->testedPhpUnit = new PhpUnit($this->mockCiBuilder, $this->mockBuild, $arrOptions);
}
/**