Comunica
    Preparing search index...

    Type Alias TestTableConfig

    TestTableConfig: ITestTableConfigBase & {
        errorArray?: string[][];
        errorTable?: string;
        exprEvalFactory?: ActorExpressionEvaluatorFactory;
        testArray?: string[][];
        testTable?: string;
        toAlgebraParse?: (query: string) => Operation;
    }

    Type Declaration

    • OptionalerrorArray?: string[][]

      Test array that will check if a given error is thrown. Result can be '' if the message doesn't need to be checked.

    • OptionalerrorTable?: string

      TestTable that will check if a given error is thrown. Result can be '' if the message doesn't need to be checked.

    • OptionalexprEvalFactory?: ActorExpressionEvaluatorFactory

      The factory that will create the evaluator used for this evaluation.

    • OptionaltestArray?: string[][]

      Test array that will check equality;

    • OptionaltestTable?: string

      TestTable that will check equality;

    • OptionaltoAlgebraParse?: (query: string) => Operation