-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6378 from Sam-Burns/phpunit6
PHPUnit 6
- Loading branch information
Showing
18 changed files
with
39 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,13 +17,13 @@ | |
use Doctrine\ORM\Query\ResultSetMapping; | ||
use Doctrine\Tests\Models\DDC753\DDC753CustomRepository; | ||
use ReflectionClass; | ||
use PHPUnit_Framework_TestCase; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* Tests for the Configuration object | ||
* @author Marco Pivetta <[email protected]> | ||
*/ | ||
class ConfigurationTest extends PHPUnit_Framework_TestCase | ||
class ConfigurationTest extends TestCase | ||
{ | ||
/** | ||
* @var Configuration | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,14 +6,15 @@ | |
use Doctrine\Common\Collections\Criteria; | ||
use Doctrine\ORM\LazyCriteriaCollection; | ||
use Doctrine\ORM\Persisters\Entity\EntityPersister; | ||
use PHPUnit\Framework\TestCase; | ||
use stdClass; | ||
|
||
/** | ||
* @author Marco Pivetta <[email protected]> | ||
* | ||
* @covers \Doctrine\ORM\LazyCriteriaCollection | ||
*/ | ||
class LazyCriteriaCollectionTest extends \PHPUnit_Framework_TestCase | ||
class LazyCriteriaCollectionTest extends TestCase | ||
{ | ||
/** | ||
* @var \Doctrine\ORM\Persisters\Entity\EntityPersister|\PHPUnit_Framework_MockObject_MockObject | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,13 +9,14 @@ | |
use Doctrine\ORM\Query\Expr as QueryBuilder; | ||
use Doctrine\ORM\Query\Parameter; | ||
use Doctrine\ORM\Query\QueryExpressionVisitor; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* Test for QueryExpressionVisitor | ||
* | ||
* @author Kirill chEbba Chebunin <[email protected]> | ||
*/ | ||
class QueryExpressionVisitorTest extends \PHPUnit_Framework_TestCase | ||
class QueryExpressionVisitorTest extends TestCase | ||
{ | ||
/** | ||
* @var QueryExpressionVisitor | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters