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.
PostgreSQL
MutationTest
1 parent 07956d2 commit 0a98741Copy full SHA for 0a98741
tests/pgsql/MutationTest.php
@@ -10,6 +10,11 @@
10
#[Group('mutation')]
11
final class MutationTest extends TestCase
12
{
13
+ protected string $driverName = 'pgsql';
14
+ protected string|null $dsn = 'pgsql:host=localhost;dbname=yiitest;port=5432;';
15
+ protected string $password = 'root';
16
+ protected string $username = 'root';
17
+
18
public function testChildrenMethodRequiresOrderByForCorrectTreeTraversal(): void
19
20
$expectedOrder = ['Child A', 'Child B', 'Child C'];
0 commit comments