Skip to content

Commit

Permalink
Merge pull request #3468 from morozov/abstract-test-classes
Browse files Browse the repository at this point in the history
Marked some test classes abstract
  • Loading branch information
morozov committed Feb 23, 2019
2 parents 29c7ba6 + b0ed680 commit d6883c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -46,7 +46,7 @@
use function strtolower;
use function substr;

class SchemaManagerFunctionalTestCase extends DbalFunctionalTestCase
abstract class SchemaManagerFunctionalTestCase extends DbalFunctionalTestCase
{
/** @var AbstractSchemaManager */
protected $schemaManager;
Expand Down
2 changes: 1 addition & 1 deletion tests/Doctrine/Tests/DbalFunctionalTestCase.php
Expand Up @@ -18,7 +18,7 @@
use function strpos;
use function var_export;

class DbalFunctionalTestCase extends DbalTestCase
abstract class DbalFunctionalTestCase extends DbalTestCase
{
/**
* Shared connection when a TestCase is run alone (outside of it's functional suite)
Expand Down
2 changes: 1 addition & 1 deletion tests/Doctrine/Tests/DbalPerformanceTestCase.php
Expand Up @@ -11,7 +11,7 @@
* and stopTiming at the end of all tests. Tests that do not start or stop
* timing will fail.
*/
class DbalPerformanceTestCase extends DbalFunctionalTestCase
abstract class DbalPerformanceTestCase extends DbalFunctionalTestCase
{
/**
* time the test started
Expand Down

0 comments on commit d6883c5

Please sign in to comment.