| INSTANTIATE_TEST_SUITE_P (CmdGetTestCases, CmdGetTest, testing::Values(CmdGetTestCase{ .opcode=kSpiDeviceOpcodeChipErase,.address=kSpiDeviceNoAddress,.payload={}, }, CmdGetTestCase{ .opcode=kSpiDeviceOpcodeSectorErase,.address=0x00,.payload={}, }, CmdGetTestCase{ .opcode=kSpiDeviceOpcodePageProgram,.address=0x0a0b0c,.payload={0x01, 0x02, 0x03, 0x04}, }, CmdGetTestCase{ .opcode=kSpiDeviceOpcodePageProgram,.address=0x0a0b0c,.payload={0x01, 0x02, 0x03, 0x04, 0x05}, }, CmdGetTestCase{ .opcode=kSpiDeviceOpcodePageProgram,.address=0x0a0b0c,.payload={0x01, 0x02, 0x03, 0x04, 0x05, 0x06}, }, CmdGetTestCase{ .opcode=kSpiDeviceOpcodePageProgram,.address=0x0a0b0c,.payload={0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07}, }, CmdGetTestCase{ .opcode=kSpiDeviceOpcodePageProgram,.address=0x0a0b0c,.payload={0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08}, })) |