summaryrefslogtreecommitdiffstats
path: root/src/test/MockLine.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/MockLine.ts
parent5b0912d99732536ae18d3c70730cc6df2ed3af24 (diff)
downloaddoxdocgen-b446b9e596fc0487b88597d8e818dae61512f309.tar.gz
-- Added more unit tests.
-- Added support for alignas.
Diffstat (limited to 'src/test/MockLine.ts')
-rw-r--r--src/test/MockLine.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/MockLine.ts b/src/test/MockLine.ts
deleted file mode 100644
index 7196a38..0000000
--- a/src/test/MockLine.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import * as vscode from "vscode";
-
-export default class MockLine implements vscode.TextLine {
- public lineNumber: number;
- public text: string;
- public range: vscode.Range;
- public rangeIncludingLineBreak: vscode.Range;
- public firstNonWhitespaceCharacterIndex: number;
- public isEmptyOrWhitespace: boolean;
- public constructor(text: string) {
- this.text = text;
- }
-}