Type Alias TestCaseResult
TestCaseResult: { endTime?: string; generatedData: { actionsSequence: string[]; outcome: string; topic: string; }; inputs: { utterance: string }; startTime: string; status: TestStatus; testNumber: number; testResults: { actualValue: string; endTime?: string; errorCode?: string; errorMessage?: string; expectedValue: string; metricExplainability: string; metricLabel: "Accuracy" | "Precision"; name: string; result: "PASS" | "FAILURE"; score: number; startTime: string; status: TestStatus; }[];} Type declaration
Optional
endTime?: string
generatedData: { actionsSequence: string[]; outcome: string; topic: string }
inputs: { utterance: string }
startTime: string
testNumber: number
testResults: {
actualValue: string;
endTime?: string;
errorCode?: string;
errorMessage?: string;
expectedValue: string;
metricExplainability: string;
metricLabel: "Accuracy" | "Precision";
name: string;
result: "PASS" | "FAILURE";
score: number;
startTime: string;
status: TestStatus;
}[]