| 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_GenerateTestScript ( |  |   String path, |  |   String script, |  |   String user, |  |   String project |  | ) id:Method_LibPTF_pnlTestController_PTF_GenerateTestScript |  | { |  |   #keys: '[102890.0.1891114212]' |  |   Body: |  |   [* |  |     // Generate the test script at the mentioned path |  |     file := OSFile::Construct(); |  |     file.Open( path + user + "_" + project + LibPTF::FileExtRunningScript(), "Write", true ); |  |     file.WriteText( script ); |  |     file.Close(); |  |   *] |  | } | 
 |