summaryrefslogtreecommitdiffstats
path: root/src/test/MockTextEditorEdit.ts
diff options
context:
space:
mode:
authorRowan Goemans <RB.Goemans@student.han.nl>2017-12-29 00:15:59 +0100
committerChristoph Schlosser <christophschlosser@users.noreply.github.com>2018-02-20 22:02:22 +0100
commitb446b9e596fc0487b88597d8e818dae61512f309 (patch)
treec7ac9e158964dd88d4cc1839f5ed0da8acce3369 /src/test/MockTextEditorEdit.ts
parent5b0912d99732536ae18d3c70730cc6df2ed3af24 (diff)
downloaddoxdocgen-b446b9e596fc0487b88597d8e818dae61512f309.tar.gz
-- Added more unit tests.
-- Added support for alignas.
Diffstat (limited to 'src/test/MockTextEditorEdit.ts')
-rw-r--r--src/test/MockTextEditorEdit.ts18
1 files changed, 0 insertions, 18 deletions
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.");
- }
-
-}