We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16fe250 commit 9efac84Copy full SHA for 9efac84
tests/system/Database/Live/MySQLi/FoundRowsTest.php
@@ -28,7 +28,9 @@ final class FoundRowsTest extends CIUnitTestCase
28
use DatabaseTestTrait;
29
30
/**
31
- * @var array<string,mixed>
+ * Database config for tests
32
+ *
33
+ * @var array<string, mixed>
34
*/
35
private $tests;
36
@@ -37,15 +39,15 @@ final class FoundRowsTest extends CIUnitTestCase
37
39
38
40
protected function setUp(): void
41
{
- parent::setUp();
-
42
$config = config('Database');
43
44
$this->tests = $config->tests;
45
46
if ($this->tests['DBDriver'] !== 'MySQLi') {
47
$this->markTestSkipped('Only MySQLi can complete this test.');
48
}
49
+
50
+ parent::setUp();
51
52
53
public function testEnableFoundRows(): void
0 commit comments