all files / core/decorators/ _namespace.ts

100% Statements 16/16
100% Branches 0/0
100% Functions 0/0
100% Lines 16/16
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20        
import { FocusTest } from "./focus-test-decorator";
import { FocusTests } from "./focus-tests-decorator";
import { IgnoreTest } from "./ignore-test-decorator";
import { IgnoreTests } from "./ignore-tests-decorator";
import { Setup } from "./setup-decorator";
import { Teardown } from "./teardown-decorator";
import { Test } from "./test-decorator";
import { TestCase } from "./test-case-decorator";
 
export {
    FocusTest,
    FocusTests,
    IgnoreTest,
    IgnoreTests,
    Setup,
    Teardown,
    Test,
    TestCase
};