| 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; |  |   *] |  | } | 
 |