import { TestContextEntity } from "./test-context-entity.class"; import { TestSuiteContext } from "./test-suite-context.class"; import { TestCaseContext } from "./test-case-context.class"; import { TestStepContext } from "./test-step-context.class"; import { TestActionContext } from "./test-action-context.class"; import { FinishedMeasurable } from "./measureable.interface"; export declare const START_EXECUTION = "START_EXECUTION"; export declare const END_EXECUTION = "END_EXECUTION"; export declare const START_TESTSUITE = "START_TESTSUITE"; export declare const UPDATE_TESTSUITE = "UPDATE_TESTSUITE"; export declare const END_TESTSUITE = "END_TESTSUITE"; export declare const START_TESTCASE = "START_TESTCASE"; export declare const UPDATE_TESTCASE = "UPDATE_TESTCASE"; export declare const END_TESTCASE = "END_TESTCASE"; export declare const START_TESTSTEP = "START_TESTSTEP"; export declare const UPDATE_TESTSTEP = "UPDATE_TESTSTEP"; export declare const END_TESTSTEP = "END_TESTSTEP"; export declare const START_TESTACTION = "START_TESTACTION"; export declare const UPDATE_TESTACTION = "UPDATE_TESTACTION"; export declare const END_TESTACTION = "END_TESTACTION"; export declare type TestExecutionContextEventTypes = typeof START_EXECUTION | typeof END_EXECUTION | typeof START_TESTSUITE | typeof UPDATE_TESTSUITE | typeof END_TESTSUITE | typeof START_TESTCASE | typeof UPDATE_TESTCASE | typeof END_TESTCASE | typeof START_TESTSTEP | typeof UPDATE_TESTSTEP | typeof END_TESTSTEP | typeof START_TESTACTION | typeof UPDATE_TESTACTION | typeof END_TESTACTION; declare type TestExecutionContextEntityEventListener = (e: T) => void; export declare type TestSuiteChangeListener = TestExecutionContextEntityEventListener; export declare type TestSuiteEndListener = TestExecutionContextEntityEventListener; export declare type TestCaseChangeListener = TestExecutionContextEntityEventListener; export declare type TestCaseEndListener = TestExecutionContextEntityEventListener; export declare type TestStepChangeListener = TestExecutionContextEntityEventListener; export declare type TestStepEndListener = TestExecutionContextEntityEventListener; export declare type TestActionChangeListener = TestExecutionContextEntityEventListener; export declare type TestActionEndListener = TestExecutionContextEntityEventListener; export {}; //# sourceMappingURL=test-execution-context.events.d.ts.map