alsatian
Version:
TypeScript and JavaScript testing framework for beautiful and readable tests
16 lines (15 loc) • 540 B
TypeScript
import { TestSetResults } from "../alsatian-core";
import { TestItem } from "./test-item";
import { TestPlan } from "./test-plan";
export declare class TestSetRunInfo {
private _testPlan;
private _testSetResults;
private _timeout;
get timeout(): number;
get testPlan(): TestPlan;
get testSetResults(): TestSetResults;
private _testPlanItem;
get testPlanItem(): TestItem;
set testPlanItem(testPlanItem: TestItem);
constructor(_testPlan: TestPlan, _testSetResults: TestSetResults, _timeout: number);
}