it('should not throw with supported protocol version and ini operation',()=>assert.doesNotThrow(()=>serializer.use(ebics.Orders.INI,client)));
it('should not throw with supported protocol version and download operation',()=>assert.doesNotThrow(()=>serializer.use(ebics.Orders.STA('2018-01-01','2018-02-01'),client)));
it('should not throw with supported protocol version and upload operation',()=>assert.doesNotThrow(()=>serializer.use(ebics.Orders.AZV('<xml />'),client)));
it('should throw with no supported protocol version and ',()=>assert.throws(()=>serializer.use({version:'H004',operation:'unspported'},client)));
it('should throw with no unuspported protocol version',()=>assert.throws(()=>serializer.use({version:'H003'},client)));