import { AnyObject } from '@loopback/repository'; import { TestCaseHandler } from './test-handler'; import { ITestCase } from './types'; export interface ITestCaseOptions { code: string; name?: string; description: string; expectation?: string; handler: TestCaseHandler; } export declare class TestCase implements ITestCase { code: string; name?: string; description: string; expectation?: string; handler: TestCaseHandler; constructor(opts: ITestCaseOptions); static withOptions(opts: ITestCaseOptions): TestCase; run(): Promise; } //# sourceMappingURL=test-case.d.ts.map