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 708a72e commit eaccc57Copy full SHA for eaccc57
nodejs/scripts/tests/xsd.js
@@ -435,6 +435,12 @@ module.exports =
435
test.equal(214, d4[0]);
436
test.equal('1g==', Jsonix.Schema.XSD.Base64Binary.INSTANCE.print(d4));
437
438
+ var d5 = Jsonix.Schema.XSD.Base64Binary.INSTANCE.parse('BwABBJQ1gJDUCAAAAAAA=');
439
+ test.ok(Jsonix.Schema.XSD.Base64Binary.INSTANCE.isInstance(d5));
440
+ test.equal(15, d5.length);
441
+ test.equal(7, d5[0]);
442
+ test.equal('BwABBJQ1gJDUCAAAAAAA', Jsonix.Schema.XSD.Base64Binary.INSTANCE.print(d5));
443
+
444
},
445
"HexBinary": function(test) {
446
var d0 = Jsonix.Schema.XSD.HexBinary.INSTANCE.parse('');
0 commit comments