alsatian
Version:
TypeScript and JavaScript testing framework for beautiful and readable tests
15 lines (14 loc) • 582 B
TypeScript
import { ITestFixture } from "../_interfaces/test-fixture.i";
import { ITest } from "../_interfaces/test.i";
import { TestOutcome } from "./test-outcome";
import { TestResults } from "./test-results";
import { IResultWithOutcome } from "./result-with-outcome.i";
export declare class TestFixtureResults implements IResultWithOutcome {
private _testFixture;
private _testResults;
get testResults(): TestResults[];
constructor(_testFixture: ITestFixture);
get fixture(): ITestFixture;
get outcome(): TestOutcome;
addTestResult(test: ITest): TestResults;
}