Skip to content

Commit 3379195

Browse files
One more test case for #764
1 parent 0f0eb44 commit 3379195

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

projects/client/Unit/src/unit/TestAmqpUri.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ public void TestAmqpUriParseSucceed()
8989
ParseSuccess("amqp://:@localhost/", "", "", "localhost", 5672, "/");
9090
ParseSuccess("amqp://user@localhost",
9191
"user", "guest", "localhost", 5672, "/");
92+
ParseSuccess("amqps://user@localhost",
93+
"user", "guest", "localhost", 5671, "/", true);
9294
ParseSuccess("amqp://user:pass@localhost",
9395
"user", "pass", "localhost", 5672, "/");
9496
ParseSuccess("amqp://host", "guest", "guest", "host", 5672, "/");

0 commit comments

Comments
 (0)