Skip to content

Commit 9b17e13

Browse files
new branch for feature createProject for console runner
1 parent 685f03d commit 9b17e13

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

runners/console/index.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,13 @@ export class Console extends Runner {
6060
return result;
6161
}
6262

63+
runCreateProject(step: Step, command: Command): RunResult {
64+
let result = new RunResult();
65+
result.returnCode = 0;
66+
67+
return result;
68+
}
69+
6370
runCobiGenJava(step: Step, command: Command): RunResult {
6471
return null;
6572
}
@@ -92,6 +99,10 @@ export class Console extends Runner {
9299
console.log("assertCobiGenJava");
93100
}
94101

102+
async assertCreateProject(step: Step, command: Command, result: RunResult) {
103+
console.log("assertCreateProject");
104+
}
105+
95106
private executeCommandSync(command: string, directory: string, result: RunResult, input?: string) {
96107
if(result.returnCode != 0) return;
97108

0 commit comments

Comments
 (0)