Member Junction
    Preparing search index...

    Shared fixture for the templates bundle: one throwaway MJ: Templates row (+ its Text MJ: Template Contents and the two MJ: Template Params created in setup — a required param and a defaulted param) rendered through the REAL TemplateEngineServer by the ordered TP checks. Teardown deletes params (including any the render pipeline auto-extracted), then content, then the template (FK-safe order).

    interface TemplatesFixture {
        Content: MJTemplateContentEntity;
        ParamIds: string[];
        Template: MJTemplateEntity;
        TemplateName: string;
        TemplateText: string;
    }
    Index

    Properties

    The Text-type MJ: Template Contents row holding the fixture template body.

    ParamIds: string[]

    IDs of the MJ: Template Params rows created in setup (teardown also sweeps auto-extracted ones).

    The throwaway MJ: Templates fixture row (Name carries the unique run prefix).

    TemplateName: string

    Unique per-run name for FindTemplate lookups.

    TemplateText: string

    The exact template body written to Content.TemplateText (round-trip baseline).