/**
 * Indicates what the result of a single test was.
 */
declare enum TestStatus {
    /**
     * The test succeeded
     */
    Success = 0,
    /**
     * The test failed
     */
    Failed = 1,
    /**
     * The test was skipped (not executed)
     */
    Skipped = 2
}
export default TestStatus;
//# sourceMappingURL=TestStatus.d.ts.map