Page 130402 CAL Test Codeunits, source in 29
Source29
src/Layers/W1/BaseApp/System/DevTools/CALTest/CALTestCodeunits.Page.al38 lines, Copyright (c) Microsoft Corporation. MIT
namespace System.TestTools.TestRunner;
using System.Reflection;
page 130402 "CAL Test Codeunits"
{
Caption = 'CAL Test Codeunits';
Editable = false;
PageType = List;
SourceTable = AllObjWithCaption;
SourceTableView = where("Object Type" = const(Codeunit),
"Object Subtype" = const('Test'));
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field("Object ID"; Rec."Object ID")
{
ApplicationArea = All;
}
field("Object Name"; Rec."Object Name")
{
ApplicationArea = All;
}
}
}
}
actions
{
}
}