ArchUnitTS - v2.2.0
    Preparing search index...

    Interface MetricResult

    Represents the result of a metric calculation for violation checking

    interface MetricResult {
        className: string;
        filePath: string;
        metricName: string;
        metricValue: number;
        threshold: number;
        comparison: MetricComparison;
        isViolation: boolean;
    }
    Index

    Properties

    className: string
    filePath: string
    metricName: string
    metricValue: number
    threshold: number
    comparison: MetricComparison
    isViolation: boolean