Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
Increase coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
jhm-ciberman committed Jan 14, 2018
1 parent 4f63572 commit 9504e14
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/DocsGM.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import {
Expect,
Test,
TestFixture,
} from "alsatian";

import DocsGM from "./DocsGM";
/* tslint:disable:max-classes-per-file completed-docs */

@TestFixture("DocsGM")
export class DocsGMFixture {

@Test("Test")
public test() {
Expect(DocsGM).toBe(DocsGM);
}
}
13 changes: 13 additions & 0 deletions src/doc_generator/ScriptParser.spec.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
import {
Expect,
SetupFixture,
Test,
TestFixture,
} from "alsatian";

import OutputConfig from "./OutputConfig";
import ScriptParser from "./ScriptParser";

/* tslint:disable:max-classes-per-file completed-docs */

@TestFixture("ScriptParser")
export class ScriptParserFixture {

public parser: ScriptParser;

@SetupFixture
public setupFixture() {
const config = new OutputConfig();
this.parser = new ScriptParser(config);
}

@Test("Test")
public test() {
Expect(true).toBe(true);
Expand Down

0 comments on commit 9504e14

Please sign in to comment.