suitescript-mocks
Version:
Set of mocks for unit testing Netsuite Suitescript 2.*
25 lines (21 loc) • 582 B
JavaScript
const { assignConstructor } = require("../../helpers.cjs");
()
class MapReduceScriptTaskStatus {
deploymentId;
scriptId;
stage;
status;
taskId;
getCurrentTotalSize = () => {};
getPendingMapCount = () => {};
getPendingMapSize = () => {};
getPendingOutputCount = () => {};
getPendingOutputSize = () => {};
getPendingReduceCount = () => {};
getPendingReduceSize = () => {};
getPercentageCompleted = () => {};
getTotalMapCount = () => {};
getTotalOutputCount = () => {};
getTotalReduceCount = () => {};
}
module.exports = MapReduceScriptTaskStatus;