Update test to reflect new behavior

This commit is contained in:
Markus Johnsson
2018-06-10 19:58:32 +02:00
parent 8850f74eab
commit 8bc92e4a63

View File

@@ -10,15 +10,16 @@
verify.codeFixAll({
fixId: "addMissingMember",
fixAllDescription: "Add all missing members",
newFileContent:
`class C {
y(x: number, arg1: string, z: boolean): any {
throw new Error("Method not implemented.");
}
z: boolean = true;
method() {
const x = 0;
this.y(x, "a", this.z);
}
y(x: number, arg1: string, z: boolean): any {
throw new Error("Method not implemented.");
}
}`,
});