Files
appRobotDriver/test/helpers/mockCmdReceiver.js
2026-04-04 08:16:27 +02:00

23 lines
346 B
JavaScript

class MockCmdReceiver {
constructor(name = 'receiver') {
this.name = name
this.calls = []
}
moveTo(oldPos, newPos) {
this.calls.push({
oldPos,
newPos
})
}
get callCount() {
return this.calls.length
}
lastCall() {
return this.calls[this.calls.length - 1]
}
}
module.exports = MockCmdReceiver