adaptationlayer/tsy/simatktsy_dll/internal/test/simatktsy_testtool/simatk/testfiles/simatk_getinput.cfg
changeset 4 510c70acdbf6
parent 3 1972d8c2e329
child 5 8ccc39f9d787
equal deleted inserted replaced
3:1972d8c2e329 4:510c70acdbf6
     1 //* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 //* All rights reserved.
       
     3 //* This component and the accompanying materials are made available
       
     4 //* under the terms of the License "Eclipse Public License v1.0"
       
     5 //* which accompanies this distribution, and is available
       
     6 //* at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //*
       
     8 //* Initial Contributors:
       
     9 //* Nokia Corporation - initial contribution.
       
    10 //*
       
    11 //* Contributors:
       
    12 //*
       
    13 //* Description:  
       
    14 
       
    15 //
       
    16 // Precondition: 
       
    17 // - Detailed description can be found from Quality Center's Project: CoreSW_CASW/Module Tests/SIM ATK TSY/SimAtkTSY_testtool
       
    18 //
       
    19 // Script description:
       
    20 //
       
    21 
       
    22 // Proactive command //
       
    23 ///////////////////////
       
    24 
       
    25 // InputDisplayOption (optional, default = 1, DisplayUserInput )
       
    26 //  0 EInputDisplayOptionNotSet, Value used in constructor.
       
    27 //  1 EDisplayUserInput
       
    28 //  2 EHideUserInput
       
    29 
       
    30 // RspFormat (optional, default = 3, ESmsDefaultAlphabetUnpacked )
       
    31 //  0 EGetInputRspFormatNotSet, Value used in constructor
       
    32 //  1 EDigitOnlyUnpacked
       
    33 //  2 EDigitOnlyPacked
       
    34 //  3 ESmsDefaultAlphabetUnpacked
       
    35 //  4 ESmsDefaultAlphabetPacked
       
    36 //  5 EUcs2Alphabet
       
    37 
       
    38 // RspLength
       
    39 //  0-255 MinRspLength
       
    40 //  0-255 MaxRspLength
       
    41 // Example: RspLength 0 10
       
    42 
       
    43 // DefaultText (Optional, default = "")
       
    44 //  Enter the text inside the quotes or as unicode hex digits. Example: Text "abc" or Text 61 62 63
       
    45 
       
    46 // Text
       
    47 //  Enter the text inside the quotes or as unicode hex digits. Example: Text "abc" or Text 61 62 63
       
    48 
       
    49 // IconId (Optional, default = IconId 0 0)
       
    50 //  IconQualifier
       
    51 //      0 NotSet
       
    52 //      1 NoIconId
       
    53 //      2 SelfExplanatory
       
    54 //      3 NotSelfExplanatory
       
    55 //  IconIdentifier
       
    56 //      Id number
       
    57 //  Example SelfExplanatory ID 5: IconId 2 5
       
    58 
       
    59 // Help (Optional, default = Help 2)
       
    60 //  0 EHelpNotSet, Initialization value used within constructor(s).
       
    61 //  1 Help information available to the user.
       
    62 //  2 No help information is available to the user.
       
    63 
       
    64 // Terminal Response //
       
    65 ///////////////////////
       
    66 
       
    67 // GeneralResult (Optional, default = Command performed successfully)
       
    68 //  General result of the proactive command.
       
    69 
       
    70 // AdditionalInfo (Optional, default = "" )
       
    71 //  Enter the text inside the quotes or as unicode hex digits. Example: Text "abc" or Text 61 62 63
       
    72 
       
    73 // InfoType (Optional, default = No Additional info)
       
    74 //  Set to TextString (0x0020) to return a string.  Some error values
       
    75 //  of GeneralResult require additional information, in which case set
       
    76 //  this to MeProblem (0x0002).  Otherwise set to NoAdditionalInfo (0x0001).
       
    77 
       
    78 // RspFormat
       
    79 //  See above
       
    80 
       
    81 [Test]
       
    82 title MOD_0004.001_SIM_ATK_TSY_[GET INPUT - normal]
       
    83 
       
    84 create SimAtk simatk
       
    85 create SimAtkNotify notify
       
    86 
       
    87 // connecting to ETel server
       
    88 simatk Connect RTelServer
       
    89 // Load TSY module
       
    90 simatk Load PhoneTsy.tsy
       
    91 // open phone module
       
    92 simatk Open DefaultPhone
       
    93 // Open SAT API
       
    94 simatk Open SAT
       
    95 
       
    96 // Open ISC Test control
       
    97 simatk Open IscControl
       
    98 // Load ISC XML -file
       
    99 simatk LoadIscTests SimAtk_GetInput.xml
       
   100 
       
   101 
       
   102 // SEQ 1.1
       
   103 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   104 simatk RunIscTestCase 4 101
       
   105 waittestclass notify
       
   106 simatk CheckProactiveCommand InputDisplayOption 1 RspFormat 1 RspLength 5 5 Text "Enter 12345"
       
   107 simatk SendTerminalResponse AdditionalInfo "12345" InfoType TextString RspFormat 1
       
   108 simatk WaitForRequest
       
   109 
       
   110 // SEQ 1.2
       
   111 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   112 simatk RunIscTestCase 4 102
       
   113 waittestclass notify
       
   114 simatk CheckProactiveCommand InputDisplayOption 1 RspFormat 2 RspLength 5 5 Text "Enter 67*#+"
       
   115 simatk SendTerminalResponse AdditionalInfo "67*#+" InfoType TextString RspFormat 4
       
   116 simatk WaitForRequest
       
   117 
       
   118 // SEQ 1.3
       
   119 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   120 simatk RunIscTestCase 4 103
       
   121 waittestclass notify
       
   122 simatk CheckProactiveCommand InputDisplayOption 1 RspFormat 3 RspLength 5 5 Text "Enter AbCdE"
       
   123 simatk SendTerminalResponse AdditionalInfo "AbCdE" InfoType TextString RspFormat 3
       
   124 simatk WaitForRequest
       
   125 
       
   126 // SEQ 1.4
       
   127 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   128 simatk RunIscTestCase 4 104
       
   129 waittestclass notify
       
   130 simatk CheckProactiveCommand InputDisplayOption 2 RspFormat 1 RspLength 4 8 Text "Password 1<SEND>2345678"
       
   131 simatk SendTerminalResponse AdditionalInfo "2345678" InfoType TextString RspFormat 3
       
   132 simatk WaitForRequest
       
   133 
       
   134 // SEQ 1.5
       
   135 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   136 simatk RunIscTestCase 4 105
       
   137 waittestclass notify
       
   138 simatk CheckProactiveCommand InputDisplayOption 1 RspFormat 1 RspLength 1 20 Text "Enter 1..9,0..9,0(1)"
       
   139 simatk SendTerminalResponse AdditionalInfo "12345678901234567890" InfoType TextString RspFormat 3
       
   140 simatk WaitForRequest
       
   141 
       
   142 // SEQ 1.6
       
   143 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   144 simatk RunIscTestCase 4 106
       
   145 waittestclass notify
       
   146 simatk CheckProactiveCommand InputDisplayOption 1 RspFormat 1 RspLength 0 8 Text "<GO-BACKWARDS>"
       
   147 simatk SendTerminalResponse GeneralResult BackwardModeRequestedByUser
       
   148 simatk WaitForRequest
       
   149 
       
   150 // SEQ 1.7
       
   151 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   152 simatk RunIscTestCase 4 107
       
   153 waittestclass notify
       
   154 simatk CheckProactiveCommand InputDisplayOption 1 RspFormat 1 RspLength 0 8 Text "<ABORT>"
       
   155 simatk SendTerminalResponse GeneralResult SessionTerminatedByUser
       
   156 simatk WaitForRequest
       
   157 
       
   158 // SEQ 1.8
       
   159 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   160 simatk RunIscTestCase 4 108
       
   161 waittestclass notify
       
   162 simatk CheckProactiveCommand InputDisplayOption 1 RspFormat 1 RspLength 160 160 Text "***1111111111###***2222222222###***3333333333###***4444444444###***5555555555###***6666666666###***7777777777###***8888888888###***9999999999###***0000000000###"
       
   163 simatk SendTerminalResponse InfoType TextString RspFormat 3 AdditionalInfo "***1111111111###***2222222222###***3333333333###***4444444444###***5555555555###***6666666666###***7777777777###***8888888888###***9999999999###***0000000000###"
       
   164 simatk WaitForRequest
       
   165 
       
   166 // SEQ 1.9
       
   167 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   168 simatk RunIscTestCase 4 109
       
   169 waittestclass notify
       
   170 simatk CheckProactiveCommand InputDisplayOption 1 RspFormat 1 RspLength 0 1 Text "<SEND>"
       
   171 simatk SendTerminalResponse InfoType NoAdditionalInfo
       
   172 simatk WaitForRequest
       
   173 
       
   174 // SEQ 1.10
       
   175 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   176 simatk RunIscTestCase 4 110
       
   177 waittestclass notify
       
   178 simatk CheckProactiveCommand InputDisplayOption 1 RspFormat 1 RspLength 1 5 Text ""
       
   179 simatk SendTerminalResponse InfoType TextString AdditionalInfo "12345" RspFormat 3
       
   180 simatk WaitForRequest
       
   181 
       
   182 // close all
       
   183 simatk Close IscControl
       
   184 simatk Close SAT
       
   185 simatk Unload PhoneTsy.tsy
       
   186 simatk Close RTelServer
       
   187 delete notify
       
   188 delete simatk
       
   189 [Endtest]
       
   190 
       
   191 [Test]
       
   192 title MOD_0004.002_SIM_ATK_TSY_[GET INPUT - no response from user]
       
   193 
       
   194 create SimAtk simatk
       
   195 create SimAtkNotify notify
       
   196 
       
   197 // connecting to ETel server
       
   198 simatk Connect RTelServer
       
   199 // Load TSY module
       
   200 simatk Load PhoneTsy.tsy
       
   201 // open phone module
       
   202 simatk Open DefaultPhone
       
   203 // Open SAT API
       
   204 simatk Open SAT
       
   205 
       
   206 // Open ISC Test control
       
   207 simatk Open IscControl
       
   208 // Load ISC XML -file
       
   209 simatk LoadIscTests SimAtk_GetInput.xml
       
   210 
       
   211 
       
   212 // SEQ 2.1
       
   213 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   214 simatk RunIscTestCase 4 201
       
   215 waittestclass notify
       
   216 simatk CheckProactiveCommand RspFormat 1 RspLength 0 10 Text "<TIME-OUT>"
       
   217 simatk SendTerminalResponse GeneralResult NoResponseFromUser
       
   218 simatk WaitForRequest
       
   219 
       
   220 // close all
       
   221 simatk Close IscControl
       
   222 simatk Close SAT
       
   223 simatk Unload PhoneTsy.tsy
       
   224 simatk Close RTelServer
       
   225 delete notify
       
   226 delete simatk
       
   227 [Endtest]
       
   228 
       
   229 [Test]
       
   230 title MOD_0004.003_SIM_ATK_TSY_[GET INPUT - UCS2 format display]
       
   231 
       
   232 create SimAtk simatk
       
   233 create SimAtkNotify notify
       
   234 
       
   235 // connecting to ETel server
       
   236 simatk Connect RTelServer
       
   237 // Load TSY module
       
   238 simatk Load PhoneTsy.tsy
       
   239 // open phone module
       
   240 simatk Open DefaultPhone
       
   241 // Open SAT API
       
   242 simatk Open SAT
       
   243 
       
   244 // Open ISC Test control
       
   245 simatk Open IscControl
       
   246 // Load ISC XML -file
       
   247 simatk LoadIscTests SimAtk_GetInput.xml
       
   248 
       
   249 // SEQ 3.1
       
   250 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   251 simatk RunIscTestCase 4 301
       
   252 waittestclass notify
       
   253 // Text in hex: "Hello" in Russia
       
   254 simatk CheckProactiveCommand RspLength 5 5 Text 0417 0414 0420 0410 0412 0421 0422 0412 0423 0419 0422 0415
       
   255 simatk SendTerminalResponse InfoType TextString AdditionalInfo "HELLO"
       
   256 simatk WaitForRequest
       
   257 
       
   258 // SEQ 3.2
       
   259 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   260 simatk RunIscTestCase 4 302
       
   261 waittestclass notify
       
   262 // Text in hex: "Hello" in Russia 6 times
       
   263 simatk CheckProactiveCommand RspLength 5 5 Text 0417 0414 0420 0410 0412 0421 0422 0412 0423 0419 0422 0415 0417 0414 0420 0410 0412 0421 0422 0412 0423 0419 0422 0415 0417 0414 0420 0410 0412 0421 0422 0412 0423 0419 0422 0415 0417 0414 0420 0410 0412 0421 0422 0412 0423 0419 0422 0415 0417 0414 0420 0410 0412 0421 0422 0412 0423 0419 0422 0415 0417 0414 0420 0410 0412 0421 0422 0412 0423 0419
       
   264 simatk SendTerminalResponse InfoType TextString AdditionalInfo "HELLO"
       
   265 simatk WaitForRequest
       
   266 // close all
       
   267 simatk Close IscControl
       
   268 simatk Close SAT
       
   269 simatk Unload PhoneTsy.tsy
       
   270 simatk Close RTelServer
       
   271 delete notify
       
   272 delete simatk
       
   273 [Endtest]
       
   274 
       
   275 [Test]
       
   276 title MOD_0004.004_SIM_ATK_TSY_[GET INPUT - UCS2 format of entry]
       
   277 
       
   278 create SimAtk simatk
       
   279 create SimAtkNotify notify
       
   280 
       
   281 // connecting to ETel server
       
   282 simatk Connect RTelServer
       
   283 // Load TSY module
       
   284 simatk Load PhoneTsy.tsy
       
   285 // open phone module
       
   286 simatk Open DefaultPhone
       
   287 // Open SAT API
       
   288 simatk Open SAT
       
   289 
       
   290 // Open ISC Test control
       
   291 simatk Open IscControl
       
   292 // Load ISC XML -file
       
   293 simatk LoadIscTests SimAtk_GetInput.xml
       
   294 
       
   295 // SEQ 4.1
       
   296 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   297 simatk RunIscTestCase 4 401
       
   298 waittestclass notify
       
   299 simatk CheckProactiveCommand RspFormat 5 RspLength 12 12 Text "Enter Hello"
       
   300 simatk SendTerminalResponse InfoType TextString AdditionalInfo 0417 0414 0420 0410 0412 0421 0422 0412 0423 0419 0422 0415
       
   301 simatk WaitForRequest
       
   302 
       
   303 // SEQ 4.2
       
   304 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   305 simatk RunIscTestCase 4 402
       
   306 waittestclass notify
       
   307 simatk CheckProactiveCommand RspFormat 5 RspLength 5 255 Text "Enter Hello"
       
   308 simatk SendTerminalResponse InfoType TextString AdditionalInfo 0417 0414 0420 0410 0412 0421 0422 0412 0423 0419 0422 0415 0417 0414 0420 0410 0412 0421 0422 0412 0423 0419 0422 0415 0417 0414 0420 0410 0412 0421 0422 0412 0423 0419 0422 0415 0417 0414 0420 0410 0412 0421 0422 0412 0423 0419 0422 0415 0417 0414 0420 0410 0412 0421 0422 0412 0423 0419 0422 0415 0417 0414 0420 0410 0412 0421 0422 0412 0423 0419
       
   309 simatk WaitForRequest
       
   310 
       
   311 // close all
       
   312 simatk Close IscControl
       
   313 simatk Close SAT
       
   314 simatk Unload PhoneTsy.tsy
       
   315 simatk Close RTelServer
       
   316 delete notify
       
   317 delete simatk
       
   318 [Endtest]
       
   319 
       
   320 [Test]
       
   321 title MOD_0004.005_SIM_ATK_TSY_[GET INPUT - default text]
       
   322 
       
   323 create SimAtk simatk
       
   324 create SimAtkNotify notify
       
   325 
       
   326 // connecting to ETel server
       
   327 simatk Connect RTelServer
       
   328 // Load TSY module
       
   329 simatk Load PhoneTsy.tsy
       
   330 // open phone module
       
   331 simatk Open DefaultPhone
       
   332 // Open SAT API
       
   333 simatk Open SAT
       
   334 
       
   335 // Open ISC Test control
       
   336 simatk Open IscControl
       
   337 // Load ISC XML -file
       
   338 simatk LoadIscTests SimAtk_GetInput.xml
       
   339 
       
   340 // SEQ 5.1
       
   341 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   342 simatk RunIscTestCase 4 501
       
   343 waittestclass notify
       
   344 simatk CheckProactiveCommand RspFormat 1 RspLength 5 5 Text "Enter 12345" DefaultText "12345"
       
   345 simatk SendTerminalResponse InfoType TextString AdditionalInfo "12345"
       
   346 simatk WaitForRequest
       
   347 
       
   348 // SEQ 5.2
       
   349 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   350 simatk RunIscTestCase 4 502
       
   351 waittestclass notify
       
   352 simatk CheckProactiveCommand RspFormat 1 RspLength 160 160 Text "Enter:" DefaultText "***1111111111###***2222222222###***3333333333###***4444444444###***5555555555###***6666666666###***7777777777###***8888888888###***9999999999###***0000000000###"
       
   353 simatk SendTerminalResponse InfoType TextString AdditionalInfo "***1111111111###***2222222222###***3333333333###***4444444444###***5555555555###***6666666666###***7777777777###***8888888888###***9999999999###***0000000000###"
       
   354 simatk WaitForRequest
       
   355 
       
   356 // close all
       
   357 simatk Close IscControl
       
   358 simatk Close SAT
       
   359 simatk Unload PhoneTsy.tsy
       
   360 simatk Close RTelServer
       
   361 delete notify
       
   362 delete simatk
       
   363 [Endtest]
       
   364 
       
   365 [Test]
       
   366 title MOD_0004.006_SIM_ATK_TSY_[GET INPUT - display of icon]
       
   367 
       
   368 create SimAtk simatk
       
   369 create SimAtkNotify notify
       
   370 
       
   371 // connecting to ETel server
       
   372 simatk Connect RTelServer
       
   373 // Load TSY module
       
   374 simatk Load PhoneTsy.tsy
       
   375 // open phone module
       
   376 simatk Open DefaultPhone
       
   377 // Open SAT API
       
   378 simatk Open SAT
       
   379 
       
   380 // Open ISC Test control
       
   381 simatk Open IscControl
       
   382 // Load ISC XML -file
       
   383 simatk LoadIscTests SimAtk_GetInput.xml
       
   384 
       
   385 // SEQ 6.1a
       
   386 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   387 simatk RunIscTestCase 4 6011
       
   388 waittestclass notify
       
   389 simatk CheckProactiveCommand RspFormat 1 RspLength 0 10 Text "<NO-ICON>" IconId 2 1
       
   390 simatk SendTerminalResponse InfoType TextString AdditionalInfo "+"
       
   391 simatk WaitForRequest
       
   392 
       
   393 // SEQ 6.1b
       
   394 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   395 simatk RunIscTestCase 4 6012
       
   396 waittestclass notify
       
   397 simatk CheckProactiveCommand RspFormat 1 RspLength 0 10 Text "<NO-ICON>" IconId 2 1
       
   398 simatk SendTerminalResponse GeneralResult SuccessRequestedIconNotDisplayed InfoType TextString AdditionalInfo "+"
       
   399 simatk WaitForRequest
       
   400 
       
   401 // SEQ 6.2a
       
   402 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   403 simatk RunIscTestCase 4 6021
       
   404 waittestclass notify
       
   405 simatk CheckProactiveCommand RspFormat 1 RspLength 0 10 Text "<BASIC-ICON>" IconId 3 1
       
   406 simatk SendTerminalResponse InfoType TextString AdditionalInfo "+"
       
   407 simatk WaitForRequest
       
   408 
       
   409 // SEQ 6.2b
       
   410 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   411 simatk RunIscTestCase 4 6022
       
   412 waittestclass notify
       
   413 simatk CheckProactiveCommand RspFormat 1 RspLength 0 10 Text "<BASIC-ICON>" IconId 3 1
       
   414 simatk SendTerminalResponse GeneralResult SuccessRequestedIconNotDisplayed InfoType TextString AdditionalInfo "+"
       
   415 simatk WaitForRequest
       
   416 
       
   417 // SEQ 6.3a
       
   418 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   419 simatk RunIscTestCase 4 6031
       
   420 waittestclass notify
       
   421 simatk CheckProactiveCommand RspFormat 1 RspLength 0 10 Text "<NO-ICON>" IconId 2 2
       
   422 simatk SendTerminalResponse InfoType TextString AdditionalInfo "+"
       
   423 simatk WaitForRequest
       
   424 
       
   425 // SEQ 6.3b
       
   426 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   427 simatk RunIscTestCase 4 6032
       
   428 waittestclass notify
       
   429 simatk CheckProactiveCommand RspFormat 1 RspLength 0 10 Text "<NO-ICON>" IconId 2 2
       
   430 simatk SendTerminalResponse GeneralResult SuccessRequestedIconNotDisplayed InfoType TextString AdditionalInfo "+"
       
   431 simatk WaitForRequest
       
   432 
       
   433 // SEQ 6.4a
       
   434 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   435 simatk RunIscTestCase 4 6041
       
   436 waittestclass notify
       
   437 simatk CheckProactiveCommand RspFormat 1 RspLength 0 10 Text "<COLOUR-ICON>" IconId 3 2
       
   438 simatk SendTerminalResponse InfoType TextString AdditionalInfo "+"
       
   439 simatk WaitForRequest
       
   440 
       
   441 // SEQ 6.4b
       
   442 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   443 simatk RunIscTestCase 4 6042
       
   444 waittestclass notify
       
   445 simatk CheckProactiveCommand RspFormat 1 RspLength 0 10 Text "<COLOUR-ICON>" IconId 3 2
       
   446 simatk SendTerminalResponse GeneralResult SuccessRequestedIconNotDisplayed InfoType TextString AdditionalInfo "+"
       
   447 simatk WaitForRequest
       
   448 
       
   449 // close all
       
   450 simatk Close IscControl
       
   451 simatk Close SAT
       
   452 simatk Unload PhoneTsy.tsy
       
   453 simatk Close RTelServer
       
   454 delete notify
       
   455 delete simatk
       
   456 [Endtest]
       
   457 
       
   458 [Test]
       
   459 title MOD_0004.007_SIM_ATK_TSY_[GET INPUT - help information]
       
   460 
       
   461 create SimAtk simatk
       
   462 create SimAtkNotify notify
       
   463 
       
   464 // connecting to ETel server
       
   465 simatk Connect RTelServer
       
   466 // Load TSY module
       
   467 simatk Load PhoneTsy.tsy
       
   468 // open phone module
       
   469 simatk Open DefaultPhone
       
   470 // Open SAT API
       
   471 simatk Open SAT
       
   472 
       
   473 // Open ISC Test control
       
   474 simatk Open IscControl
       
   475 // Load ISC XML -file
       
   476 simatk LoadIscTests SimAtk_GetInput.xml
       
   477 
       
   478 // SEQ 7.1
       
   479 notify UseObjectAddress simatk ESatNotifyGetInputPCmd
       
   480 simatk RunIscTestCase 4 701
       
   481 waittestclass notify
       
   482 simatk CheckProactiveCommand RspFormat 1 RspLength 5 5 Text "Enter 12345" Help 1
       
   483 simatk SendTerminalResponse GeneralResult HelpRequestedByUser
       
   484 simatk WaitForRequest
       
   485 
       
   486 // close all
       
   487 simatk Close IscControl
       
   488 simatk Close SAT
       
   489 simatk Unload PhoneTsy.tsy
       
   490 simatk Close RTelServer
       
   491 delete notify
       
   492 delete simatk
       
   493 [Endtest]
       
   494