Polyman Documentation - v2.3.3
    Preparing search index...

    Interface LocalManualTest

    A manual (hand-authored) test in a testset.

    Manual tests pair an input file (and optionally a reference output) with an explicit Polygon test index. The convention is to name files m-<NN>[-label].in and m-<NN>[-label].out under ./manual/<testset>/, but LocalManualTest.input can point anywhere.

    LocalManualTest

    interface LocalManualTest {
        input: string;
        output?: string;
        index: number;
        group?: string;
        points?: number;
        useInStatements?: boolean;
    }
    Index

    Properties

    input: string

    Path to the test input file

    output?: string

    Optional path to the reference output

    index: number

    1-based Polygon test index this manual occupies

    group?: string

    Test group name

    points?: number

    Points for this test

    useInStatements?: boolean

    Whether to embed in problem statement