Unverified Commit d6883c50 authored by Sergei Morozov's avatar Sergei Morozov Committed by GitHub

Merge pull request #3468 from morozov/abstract-test-classes

Marked some test classes abstract
parents 29c7ba6a b0ed680f
...@@ -46,7 +46,7 @@ use function strlen; ...@@ -46,7 +46,7 @@ use function strlen;
use function strtolower; use function strtolower;
use function substr; use function substr;
class SchemaManagerFunctionalTestCase extends DbalFunctionalTestCase abstract class SchemaManagerFunctionalTestCase extends DbalFunctionalTestCase
{ {
/** @var AbstractSchemaManager */ /** @var AbstractSchemaManager */
protected $schemaManager; protected $schemaManager;
......
...@@ -18,7 +18,7 @@ use function is_scalar; ...@@ -18,7 +18,7 @@ use function is_scalar;
use function strpos; use function strpos;
use function var_export; 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) * Shared connection when a TestCase is run alone (outside of it's functional suite)
......
...@@ -11,7 +11,7 @@ use function microtime; ...@@ -11,7 +11,7 @@ use function microtime;
* and stopTiming at the end of all tests. Tests that do not start or stop * and stopTiming at the end of all tests. Tests that do not start or stop
* timing will fail. * timing will fail.
*/ */
class DbalPerformanceTestCase extends DbalFunctionalTestCase abstract class DbalPerformanceTestCase extends DbalFunctionalTestCase
{ {
/** /**
* time the test started * time the test started
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment