From b446b9e596fc0487b88597d8e818dae61512f309 Mon Sep 17 00:00:00 2001 From: Rowan Goemans Date: Fri, 29 Dec 2017 00:15:59 +0100 Subject: -- Added more unit tests. -- Added support for alignas. --- src/test/MockTextEditorEdit.ts | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/test/MockTextEditorEdit.ts (limited to 'src/test/MockTextEditorEdit.ts') diff --git a/src/test/MockTextEditorEdit.ts b/src/test/MockTextEditorEdit.ts deleted file mode 100644 index e751182..0000000 --- a/src/test/MockTextEditorEdit.ts +++ /dev/null @@ -1,18 +0,0 @@ -import * as vscode from "vscode"; - -export default class MockTextEditorEdit implements vscode.TextEditorEdit { - public text: string; - public replace(location: vscode.Position | vscode.Range | vscode.Selection, value: string): void { - this.text = value; - } - public insert(location: vscode.Position, value: string): void { - throw new Error("Method not implemented."); - } - public delete(location: vscode.Range | vscode.Selection): void { - throw new Error("Method not implemented."); - } - public setEndOfLine(endOfLine: vscode.EndOfLine): void { - throw new Error("Method not implemented."); - } - -} -- cgit v1.2.3