陈清红
2025-04-14 880f3c0257eeb8c37761d484258fdd102a369a19
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Quintiq file version 2.0
#parent: #root
Method PTF_IsReadyToRun (
  output String feedback_o
) as Boolean id:Method_LibPTF_frmTestScenario_PTF_IsReadyToRun
{
  #keys: '[104342.0.751922894]'
  Body:
  [*
    // Checks if PTF is ready to be executed
    value := not btnStop.Enabled();
    
    if( not value )
    {
      feedback_o := feedback_o + "The test is currently running" + String::NewLine();
    }
    
    return value;
  *]
}