We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c339200 commit 1c98a2fCopy full SHA for 1c98a2f
1 file changed
tests/XML/QNameElementTraitTest.php
@@ -51,6 +51,19 @@ public function testMarshalling(): void
51
}
52
53
54
+ /**
55
+ */
56
+ public function testMarshallingNonNamespacedQualifiedName(): void
57
+ {
58
+ $qnameElement = new QNameElement('Sender', null);
59
+
60
+ $this->assertEquals(
61
+ '<ssp:QNameElement xmlns:ssp="urn:x-simplesamlphp:namespace">Sender</ssp:QNameElement>',
62
+ strval($qnameElement)
63
+ );
64
+ }
65
66
67
/**
68
*/
69
public function testMarshallingInvalidQualifiedNameThrowsException(): void
0 commit comments