michael@0: /* Any copyright is dedicated to the Public Domain. michael@0: http://creativecommons.org/publicdomain/zero/1.0/ */ michael@0: michael@0: MARIONETTE_HEAD_JS = "stk_helper.js"; michael@0: michael@0: function testPollOff(command, expect) { michael@0: log("STK CMD " + JSON.stringify(command)); michael@0: is(command.typeOfCommand, iccManager.STK_CMD_POLL_OFF, expect.name); michael@0: is(command.commandQualifier, expect.commandQualifier, expect.name); michael@0: michael@0: runNextTest(); michael@0: } michael@0: michael@0: let tests = [ michael@0: {command: "d009810301040082028182", michael@0: func: testPollOff, michael@0: expect: {name: "pull_off_cmd_1", michael@0: commandQualifier: 0x00}} michael@0: ]; michael@0: michael@0: runNextTest();