summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Schlosser <thisisagap@gmail.com>2017-12-16 21:28:36 +0100
committerChristoph Schlosser <christophschlosser@users.noreply.github.com>2017-12-16 21:48:09 +0100
commit4c5c82fcef969c07e9a9abde09af159735664416 (patch)
tree68365bda1e399b933dc695e413ae0689ba9ae1df
parent547d3f716b2b116d1fb460fb015927a0f1f8b37e (diff)
downloaddoxdocgen-4c5c82fcef969c07e9a9abde09af159735664416.tar.gz
Generation tests should suffice for now
-rw-r--r--src/test/extension.test.ts30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/test/extension.test.ts b/src/test/extension.test.ts
index 8b9d9fd..da2819d 100644
--- a/src/test/extension.test.ts
+++ b/src/test/extension.test.ts
@@ -20,36 +20,6 @@ import MockPosition from "./MockPosition";
import MockSelection from "./MockSelection";
// Defines a Mocha test suite to group tests of similar kind together
-suite("Comment parsing", () => {
-
- function setup(method: string): IDocGen {
- let parser: CodeParser;
- parser = new CParser();
-
- let position: MockPosition;
- position = new MockPosition(0, 0);
-
- let selection: MockSelection;
- selection = new MockSelection(position);
-
- let line: MockLine;
- line = new MockLine(method);
-
- let doc: MockDocument;
- doc = new MockDocument(line);
-
- let editor: vscode.TextEditor;
- editor = new MockEditor(selection, doc);
-
- const gen: IDocGen = parser.Parse(editor);
-
- return gen;
- }
-
- // Tests
-});
-
-// Defines a Mocha test suite to group tests of similar kind together
suite("Comment generation", () => {
let editor: MockEditor;