| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | | Quintiq file version 2.0 |  | #parent: #root |  | Method PTF_IsReadyToRun ( |  |   output String feedback_o |  | ) as Boolean id:Method_LibPTF_dlgCreateEditTestScript_PTF_IsReadyToRun |  | { |  |   #keys: '[105690.0.899117738]' |  |   Body: |  |   [* |  |     value := not btnStop.Enabled(); |  |      |  |     if( not value ) |  |     { |  |       feedback_o := feedback_o + "The test is currently running" + String::NewLine(); |  |     } |  |      |  |     return value; |  |   *] |  | } | 
 |