Table 130404 CAL Test Method, source in 29

Source29

src/Layers/W1/BaseApp/System/DevTools/CALTest/CALTestMethod.Table.al43 lines, Copyright (c) Microsoft Corporation. MIT

namespace System.TestTools.TestRunner;

table 130404 "CAL Test Method"
{
    Caption = 'CAL Test Method';
    ReplicateData = false;
    DataClassification = CustomerContent;

    fields
    {
        field(1; "Test Codeunit ID"; Integer)
        {
            Caption = 'Test Codeunit ID';
        }
        field(2; "Test Method Name"; Text[128])
        {
            Caption = 'Test Method Name';
        }
    }

    keys
    {
        key(Key1; "Test Codeunit ID", "Test Method Name")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }

    procedure InsertEntry(CodeunitID: Integer; FunctionName: Text[128])
    begin
        Init();

        Validate("Test Codeunit ID", CodeunitID);
        Validate("Test Method Name", FunctionName);
        Insert(true);
    end;
}