Quintiq file version 2.0
|
#parent: #root
|
Method PTF_NewTestScript (
|
internal[GUIComponent] parent,
|
LibPTF_TestScenario owner
|
) as LibPTF_TestScript id:Method_LibPTF_dlgCreateEditTestScript_PTF_NewTestScript
|
{
|
#keys: '[103546.0.62859912]'
|
Body:
|
[*
|
// New test script
|
this.Title( "New test script" );
|
this.chkOffset().Visible( false );
|
this.chkStartClientDelay().Visible( false );
|
|
data := owner.LibPTF_TestScript( relshadow );
|
|
Dialog.Data( data );
|
|
if( Dialog.DoModal( parent ) > 0 )
|
{
|
data.Commit();
|
}
|
|
return data.WrappedInstance();
|
*]
|
}
|