Skip to content

Commit

Permalink
Tidy imports in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jameskmonger committed Aug 17, 2016
1 parent fece978 commit 3301cb2
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 17 deletions.
6 changes: 4 additions & 2 deletions core/alsatian-core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ import {
TestSetResults,
TestOutcome,
TestFixtureResults,
TestResults
TestResults,
TestCaseResult
} from "./_results";

import {
Expand Down Expand Up @@ -60,5 +61,6 @@ export {
TestOutput,
MatchError,
TestFixtureResults,
TestResults
TestResults,
TestCaseResult
};
3 changes: 1 addition & 2 deletions test/unit-tests/cli/cli-test-runner.spec.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { CliTestRunner } from "../../../cli/cli-test-runner";
import { TestSet } from "../../../core/test-set";
import { TestFixtureBuilder } from "../../builders/test-fixture-builder";
import { TestBuilder } from "../../builders/test-builder";
import { TestCaseBuilder } from "../../builders/test-case-builder";
import { Expect, AsyncTest, TestCase, SpyOn, Setup, Teardown } from "../../../core/alsatian-core";
import { Expect, AsyncTest, TestCase, SpyOn, Setup, Teardown, TestSet } from "../../../core/alsatian-core";
import { createPromise } from "../../../promise/create-promise";

export class CliTestRunnerTests {
Expand Down
3 changes: 1 addition & 2 deletions test/unit-tests/errors/match-error.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { MatchError } from "../../../core/errors/match-error";
import { Expect, TestCase } from "../../../core/alsatian-core";
import { Expect, TestCase, MatchError } from "../../../core/alsatian-core";

export class MatchErrorTests {

Expand Down
3 changes: 1 addition & 2 deletions test/unit-tests/test-fixture/get-tests.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Expect, Test, TestCase } from "../../../core/alsatian-core";
import { Expect, Test, TestCase, TestFixture } from "../../../core/alsatian-core";
import { TestBuilder } from "../../builders/test-builder";
import { TestFixture } from "../../../core/test-fixture";

export class GetTestsTests {

Expand Down
3 changes: 1 addition & 2 deletions test/unit-tests/test-output/emit-plan.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Expect, TestCase, SpyOn } from "../../../core/alsatian-core";
import { Expect, TestCase, SpyOn, TestOutput } from "../../../core/alsatian-core";
import { OutputStreamBuilder } from "../../builders/output-stream-builder";
import { TestOutput } from "../../../core/test-output";

export class EmitPlanTests {

Expand Down
7 changes: 2 additions & 5 deletions test/unit-tests/test-output/emit-result.spec.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import { Expect, TestCase, Test, SpyOn, FocusTest } from "../../../core/alsatian-core";
import { TestCaseResult, TestOutcome } from "../../../core/_results";
import { ITest } from "../../../core/_interfaces/test.i";
import { Expect, TestCase, Test, SpyOn, FocusTest, TestOutput, MatchError, TestCaseResult, TestOutcome} from "../../../core/alsatian-core";
import { ITest } from "../../../core/_interfaces";
import { TestBuilder } from "../../builders/test-builder";
import { OutputStreamBuilder } from "../../builders/output-stream-builder";
import { TestOutput } from "../../../core/test-output";
import { MatchError } from "../../../core/errors/match-error";

export class EmitResultTests {

Expand Down
3 changes: 1 addition & 2 deletions test/unit-tests/test-output/emit-version.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Expect, Test, SpyOn } from "../../../core/alsatian-core";
import { Expect, Test, SpyOn, TestOutput } from "../../../core/alsatian-core";
import { OutputStreamBuilder } from "../../builders/output-stream-builder";
import { TestOutput } from "../../../core/test-output";

export class EmitVersionTests {

Expand Down

0 comments on commit 3301cb2

Please sign in to comment.