all files / core/ alsatian-core.ts

100% Statements 20/20
100% Branches 0/0
100% Functions 0/0
100% Lines 20/20
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24        
import { Expect } from "./expect";
import { FocusTest } from "./decorators/focus-test-decorator";
import { FocusTests } from "./decorators/focus-tests-decorator";
import { IgnoreTest } from "./decorators/ignore-test-decorator";
import { IgnoreTests } from "./decorators/ignore-tests-decorator";
import { Test } from "./decorators/test-decorator";
import { TestCase } from "./decorators/test-case-decorator";
import { TestRunner } from "./test-runner";
import { TestSet } from "./test-set";
import { SpyOn } from "./spying/spy-on";
 
export {
   Expect,
   FocusTest,
   FocusTests,
   IgnoreTest,
   IgnoreTests,
   Test,
   TestCase,
   TestRunner,
   TestSet,
   SpyOn
};