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 16ad664 commit 4693ef9Copy full SHA for 4693ef9
tests/Unit/AuthenticationTest.php
@@ -55,13 +55,4 @@ public function testFallbackToEnvironmentVariables(): void
55
putenv('NEO4J_PASSWORD');
56
}
57
58
- public function testInvalidArguments(): void
59
- {
60
- // Expect an exception when both username and password are null
61
- $this->expectException(InvalidArgumentException::class);
62
- $this->expectExceptionMessage('Both username and password cannot be null.');
63
-
64
- // Attempt to create an Authentication instance without credentials
65
- Authentication::request(null, null, null);
66
- }
67
0 commit comments