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 649399c commit f868cf1Copy full SHA for f868cf1
nodejs/scripts/tests/xsd.js
@@ -428,6 +428,13 @@ module.exports =
428
test.equal(67, d3[2]);
429
test.equal('QUJD', Jsonix.Schema.XSD.Base64Binary.INSTANCE.print(d3));
430
test.done();
431
+
432
+ var d4 = Jsonix.Schema.XSD.Base64Binary.INSTANCE.parse('1g==');
433
+ test.ok(Jsonix.Schema.XSD.Base64Binary.INSTANCE.isInstance(d4));
434
+ test.equal(1, d4.length);
435
+ test.equal(214, d4[0]);
436
+ test.equal('1g==', Jsonix.Schema.XSD.Base64Binary.INSTANCE.print(d4));
437
438
},
439
"HexBinary": function(test) {
440
var d0 = Jsonix.Schema.XSD.HexBinary.INSTANCE.parse('');
0 commit comments