Interface EvalCriteria

Evaluation criteria for a test case.

interface EvalCriteria {
    name: string;
    description: string;
    weight: number;
    scorer: string;
    threshold?: number;
}

Properties

name: string

Criteria name

description: string

Description

weight: number

Weight in final score (0-1)

scorer: string

Scoring function name

threshold?: number

Minimum passing score