|
1 // Copyright (c) 2007-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 "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 // This is the class implementation for the MO-LR - Accurate GPS Result scenario Tests |
|
15 // |
|
16 // |
|
17 |
|
18 // LBS includes. |
|
19 #include <lbs/test/lbsnetprotocolproxy.h> |
|
20 #include <lbs/lbsnetprotocolbase.h> |
|
21 #include <lbs/lbsassistancedatabuilderset.h> |
|
22 |
|
23 // LBS test includes. |
|
24 #include "ctlbshybridueassistednpudposstatus.h" |
|
25 #include <lbs/test/tlbsutils.h> |
|
26 #include "argutils.h" |
|
27 #include <lbs/test/activeyield.h> |
|
28 |
|
29 |
|
30 const TInt KN(2); // Number of times to send the measurement from GPS to NW |
|
31 |
|
32 /** |
|
33 Static Constructor |
|
34 */ |
|
35 CT_LbsHybridUEAssistedNpudPosStatus* CT_LbsHybridUEAssistedNpudPosStatus::New(CT_LbsHybridMOLRServer& aParent) |
|
36 { |
|
37 // Note that we do not use ELeave. |
|
38 // This means that having insufficient memory will return NULL; |
|
39 CT_LbsHybridUEAssistedNpudPosStatus* testStep = new CT_LbsHybridUEAssistedNpudPosStatus(aParent); |
|
40 if (testStep) |
|
41 { |
|
42 TInt err = KErrNone; |
|
43 |
|
44 TRAP(err, testStep->ConstructL()); |
|
45 if (err) |
|
46 { |
|
47 delete testStep; |
|
48 testStep = NULL; |
|
49 } |
|
50 } |
|
51 return testStep; |
|
52 } |
|
53 |
|
54 |
|
55 /** |
|
56 * Constructor |
|
57 */ |
|
58 CT_LbsHybridUEAssistedNpudPosStatus::CT_LbsHybridUEAssistedNpudPosStatus(CT_LbsHybridMOLRServer& aParent) : CT_LbsHybridMOLRStep(aParent) |
|
59 { |
|
60 SetTestStepName(KLbsHybridUEAssistedNpudPosStatus); |
|
61 iSessionId.SetSessionOwner(KRequestUid); |
|
62 iSessionId.SetSessionNum(0x0005); |
|
63 } |
|
64 |
|
65 |
|
66 void CT_LbsHybridUEAssistedNpudPosStatus::ConstructL() |
|
67 { |
|
68 // Create the base class objects. |
|
69 CT_LbsHybridMOLRStep::ConstructL(); |
|
70 iLbsPositioningStatus = CLbsPositioningStatus::NewL(*this); |
|
71 iPosStatusCount = 0; |
|
72 } |
|
73 |
|
74 |
|
75 /** |
|
76 * Destructor |
|
77 */ |
|
78 CT_LbsHybridUEAssistedNpudPosStatus::~CT_LbsHybridUEAssistedNpudPosStatus() |
|
79 { |
|
80 delete iLbsPositioningStatus; |
|
81 } |
|
82 |
|
83 // Hybrid - UE Assisted MO-LR GPS ok |
|
84 |
|
85 TVerdict CT_LbsHybridUEAssistedNpudPosStatus::doTestStepL() |
|
86 { |
|
87 INFO_PRINTF1(_L("CT_LbsHybridUEAssistedNpudPosStatus::doTestStepL()")); |
|
88 |
|
89 // Stop the test if the preable failed |
|
90 TESTL(TestStepResult() == EPass); |
|
91 |
|
92 const TInt KTimeOut = 60*1000*1000; |
|
93 |
|
94 // Create Network Protocol Proxy |
|
95 CNetProtocolProxy* proxy = CNetProtocolProxy::NewL(); |
|
96 CleanupStack::PushL(proxy); |
|
97 |
|
98 // >> AdviceSystemStatus(0) - GetCurrentCapabilitiesResponse |
|
99 TESTL(proxy->WaitForResponse(KTimeOut) == ENetMsgGetCurrentCapabilitiesResponse); |
|
100 CLbsNetworkProtocolBase::TLbsSystemStatus status; |
|
101 TInt cleanupCnt; |
|
102 cleanupCnt = proxy->GetArgsLC(ENetMsgGetCurrentCapabilitiesResponse, &status); |
|
103 TESTL(status == CLbsNetworkProtocolBase::ESystemStatusNone); |
|
104 CleanupStack::PopAndDestroy(cleanupCnt); |
|
105 |
|
106 // Start Test Step |
|
107 RPositionServer server; |
|
108 TESTL(KErrNone == server.Connect()); |
|
109 CleanupClosePushL(server); |
|
110 |
|
111 RPositioner pos; |
|
112 TESTL(KErrNone == pos.Open(server)); |
|
113 |
|
114 CPosServerWatcher *pWatch = NULL; |
|
115 TInt reason = KErrNone; |
|
116 |
|
117 CleanupClosePushL(pos); |
|
118 // Set the max fix time for the client request to ensure the location server does not complete the request too soon during the test. |
|
119 TPositionUpdateOptions posOpts(TTimeIntervalMicroSeconds(0), TTimeIntervalMicroSeconds(KMOLRFixTime)); |
|
120 pos.SetUpdateOptions(posOpts); |
|
121 |
|
122 pWatch = CPosServerWatcher::NewLC(pos, *this); |
|
123 |
|
124 // Request a self-locate MoLr. |
|
125 pWatch->IssueNotifyPositionUpdate(); |
|
126 CheckForObserverEventTestsL(KTimeOut, *this); |
|
127 //We should get Positioning Indicator flag on and may be off after that |
|
128 TESTL(iPosStatusCount==1); |
|
129 TESTL(iPositioningStatus == CLbsPositioningStatus::ELbsPositioningStatusActive); |
|
130 |
|
131 // >> RequestSelfLocation() |
|
132 TESTL(proxy->WaitForResponse(KTimeOut) == ENetMsgRequestSelfLocation); |
|
133 |
|
134 // Process the response. |
|
135 TLbsNetSessionId* sessionId = NULL; |
|
136 TLbsNetPosRequestOptionsAssistance* opts = NULL; |
|
137 |
|
138 cleanupCnt = proxy->GetArgsLC(ENetMsgRequestSelfLocation, &sessionId, &opts); |
|
139 |
|
140 TBool qualitycheck = ArgUtils::CompareQuality( opts, |
|
141 ETrue, |
|
142 KMinHorizontalAcc, |
|
143 KMinVerticalAcc, |
|
144 KMOLRFixTime, |
|
145 0, |
|
146 EAssistanceDataReferenceTime, |
|
147 (TPositionModuleInfo::ETechnologyTerminal |
|
148 | TPositionModuleInfo::ETechnologyAssisted) |
|
149 ); |
|
150 |
|
151 TESTL(qualitycheck); |
|
152 |
|
153 iSessionId.SetSessionNum(sessionId->SessionNum()); |
|
154 iSessionId.SetSessionOwner(sessionId->SessionOwner()); |
|
155 |
|
156 CleanupStack::PopAndDestroy(cleanupCnt); |
|
157 sessionId = NULL; |
|
158 opts = NULL; |
|
159 |
|
160 // << ProcessStatusUpdate(EServiceSelfLocation) |
|
161 MLbsNetworkProtocolObserver::TLbsNetProtocolServiceMask activeServiceMask = MLbsNetworkProtocolObserver::EServiceSelfLocation; |
|
162 proxy->CallL(ENetMsgProcessStatusUpdate, &activeServiceMask); |
|
163 |
|
164 // << ProcessLocationUpdate(SessionId, RefPosition) |
|
165 TPositionInfo refPosInfo = ArgUtils::MolrReferencePositionInfo(); |
|
166 proxy->CallL(ENetMsgProcessLocationUpdate, &iSessionId, &refPosInfo); |
|
167 |
|
168 // TEST: Get the ref pos app side. |
|
169 CheckForObserverEventTestsL(KTimeOut, *this); |
|
170 //Check for Position Status update - This event could be after reference position |
|
171 //NOTE: Ref position and positioning indicator callback can be in any order |
|
172 CheckForObserverEventTestsL(KTimeOut, *this); |
|
173 TESTL(iPosStatusCount==2); |
|
174 TESTL(iPositioningStatus == CLbsPositioningStatus::ELbsPositioningStatusNotActive); |
|
175 |
|
176 // << ProcessAssistanceData() |
|
177 TLbsAsistanceDataGroup dataMask = EAssistanceDataReferenceTime; |
|
178 RLbsAssistanceDataBuilderSet assistanceData; |
|
179 ArgUtils::PopulateLC(assistanceData); |
|
180 reason = KErrNone; |
|
181 proxy->CallL(ENetMsgProcessAssistanceData, &dataMask, &assistanceData, &reason); |
|
182 CleanupStack::PopAndDestroy(); // assistanceData |
|
183 |
|
184 // << ProcessLocationRequest(SessionId, HybridMode, alpha2) |
|
185 TBool emergency = EFalse; |
|
186 MLbsNetworkProtocolObserver::TLbsNetProtocolService service = MLbsNetworkProtocolObserver::EServiceSelfLocation; |
|
187 TLbsNetPosRequestQuality quality = ArgUtils::Quality(); |
|
188 quality.SetMaxFixTime(ArgUtils::Alpha2()); |
|
189 TLbsNetPosRequestMethod method = ArgUtils::RequestHybridMethod(); |
|
190 proxy->CallL(ENetMsgProcessLocationRequest, &iSessionId, &emergency, &service, &quality, &method); |
|
191 |
|
192 // Now that the hybrid/alpha2 has been requested, record current time to verify alpha2 timer expires correctly. |
|
193 TTime startTime; |
|
194 startTime.HomeTime(); |
|
195 |
|
196 // >> RequestAssistanceData(0) |
|
197 TESTL(proxy->WaitForResponse(KTimeOut) == ENetMsgRequestAssistanceData); |
|
198 cleanupCnt = proxy->GetArgsLC(ENetMsgRequestAssistanceData, &dataMask); |
|
199 TESTL(dataMask == EAssistanceDataNone); |
|
200 CleanupStack::PopAndDestroy(cleanupCnt); |
|
201 |
|
202 // << NotifyPositionUpdate() |
|
203 pWatch->IssueNotifyPositionUpdate(); |
|
204 |
|
205 CheckForObserverEventTestsL(KTimeOut, *this); |
|
206 //We should get Positioning Indicator flag on |
|
207 TESTL(iPosStatusCount==3); |
|
208 TESTL(iPositioningStatus == CLbsPositioningStatus::ELbsPositioningStatusActive); |
|
209 |
|
210 // >> RequestAssistanceData(0) |
|
211 TESTL(proxy->WaitForResponse(KTimeOut) == ENetMsgRequestAssistanceData); |
|
212 |
|
213 |
|
214 cleanupCnt = proxy->GetArgsLC(ENetMsgRequestAssistanceData, &dataMask); |
|
215 TESTL(dataMask == EAssistanceDataNone); |
|
216 CleanupStack::PopAndDestroy(cleanupCnt); |
|
217 // Determine the value to take off the alpha2 value. This is required because we had to wait for the assistance data response. |
|
218 TTimeIntervalMicroSeconds microseconds; |
|
219 TTime stopTime; |
|
220 stopTime.HomeTime(); |
|
221 microseconds = stopTime.MicroSecondsFrom(startTime); |
|
222 TInt64 timeElapsed = microseconds.Int64(); |
|
223 TInt delta = 2 * 1000 * 1000; // 2 secs. |
|
224 |
|
225 // >> RespondLocationRequest() |
|
226 TESTL(proxy->WaitForResponse(ArgUtils::Alpha2() - timeElapsed - delta) == ENetMsgTimeoutExpired); |
|
227 |
|
228 // Wait for and process the response. |
|
229 TESTL(proxy->WaitForResponse(2 * delta) == ENetMsgRespondLocationRequest); // DONT get because the measurement data bus has not been created... |
|
230 |
|
231 sessionId = NULL; |
|
232 TPositionGpsMeasurementInfo* measurementInfo = NULL; |
|
233 cleanupCnt = proxy->GetArgsLC(ENetMsgRespondLocationRequest, &sessionId, &reason, &measurementInfo); |
|
234 TESTL(sessionId->SessionNum() == iSessionId.SessionNum()); |
|
235 TESTL(reason == KErrNone); |
|
236 CleanupStack::PopAndDestroy(cleanupCnt);//sessionId, measurementInfo |
|
237 |
|
238 // Recv -> RequestAssistanceData - we get an extra msg as the result of the A-GPS manager re-issueing a location request when it's |
|
239 // max fix time timer expries. |
|
240 TESTL(proxy->WaitForResponse(KTimeOut) == ENetMsgRequestAssistanceData); |
|
241 cleanupCnt = proxy->GetArgsLC(ENetMsgRequestAssistanceData, &dataMask); |
|
242 TESTL(dataMask == EAssistanceDataNone); |
|
243 CleanupStack::PopAndDestroy(cleanupCnt); |
|
244 const TInt t = 8 * 1000 * 1000; // 8 secs. |
|
245 quality.SetMaxFixTime(t); |
|
246 |
|
247 TPositionExtendedSatelliteInfo* positionInfo = NULL; |
|
248 //TPositionInfo* positionInfo = NULL; |
|
249 |
|
250 for (TInt i = 0; i < KN; i++) |
|
251 { |
|
252 // << ProcessLocationRequest(SessionId, HybridMode, t) |
|
253 proxy->CallL(ENetMsgProcessLocationRequest, &iSessionId, &emergency, &service, &quality, &method); |
|
254 |
|
255 // >> RequestAssistanceData(0) |
|
256 TESTL(proxy->WaitForResponse(KTimeOut) == ENetMsgRequestAssistanceData); |
|
257 cleanupCnt = proxy->GetArgsLC(ENetMsgRequestAssistanceData, &dataMask); |
|
258 TESTL(dataMask == EAssistanceDataNone); |
|
259 CleanupStack::PopAndDestroy(cleanupCnt); |
|
260 |
|
261 // >> RespondLocationRequest() - first measurement, second position. |
|
262 TESTL(proxy->WaitForResponse(t + delta) == ENetMsgRespondLocationRequest); |
|
263 |
|
264 sessionId = NULL; |
|
265 |
|
266 // Expect measurement first time. |
|
267 if (i < (KN-1)) |
|
268 { |
|
269 measurementInfo = NULL; |
|
270 cleanupCnt = proxy->GetArgsLC(ENetMsgRespondLocationRequest, &sessionId, &reason, &measurementInfo); |
|
271 |
|
272 // Check it is measurement |
|
273 TESTL(measurementInfo->PositionClassType() == EPositionGpsMeasurementInfoClass); |
|
274 |
|
275 // >> RequestAssistanceData - we get an extra msg as the result of the A-GPS manager re-issueing a location request when it's |
|
276 // max fix time timer expries. |
|
277 TESTL(proxy->WaitForResponse(KTimeOut) == ENetMsgRequestAssistanceData); |
|
278 |
|
279 cleanupCnt += proxy->GetArgsLC(ENetMsgRequestAssistanceData, &dataMask); |
|
280 |
|
281 TESTL(dataMask == EAssistanceDataNone); |
|
282 TESTL(sessionId->SessionNum() == iSessionId.SessionNum()); |
|
283 TESTL(reason == KErrNone); |
|
284 } |
|
285 |
|
286 // Expect position second time. |
|
287 else |
|
288 { |
|
289 cleanupCnt = proxy->GetArgsLC(ENetMsgRespondLocationRequest, &sessionId, &reason, &positionInfo); |
|
290 |
|
291 // check it is a position |
|
292 TESTL(positionInfo->PositionClassType() == (EPositionInfoClass|EPositionCourseInfoClass|EPositionSatelliteInfoClass|EPositionExtendedSatelliteInfoClass)); |
|
293 TESTL(sessionId->SessionNum() == iSessionId.SessionNum()); |
|
294 TESTL(reason == KErrNone); |
|
295 /* Check whether ExtendedSatelliteInfo data received by protocol module is the same as data fed to the GPS module or not. |
|
296 Latitude(50.2454),Longitude(0.1668),Altitude(1.0),HorizontalAccuracy(10),VerticalAccuracy(10), speed(26.0),vertical speed(20.0),heading(25.0),course(30.0), |
|
297 SPEED_ACCURACY(2.0),VERTICAL_SPEED_ACCURACY(3.0),HEADING_ACCURACY(10.0),COURSE_ACCURACY(4.0), |
|
298 SD_OF_LONG_ERROR(5.0),SD_OF_LAT_ERROR(6.0),SD_OF_ALT_ERROR(7.0),SD_OF_SEMI_MAJOR_AXIS_ERROR(8.0), |
|
299 SD_OF_SEMI_MINOR_AXIS_ERROR(9.0),ORIEN_OF_SEMI_MAJOR_AXIS_ERROR(10.0),RMS_VAL_OF_SD_OF_RANGE(11.0), |
|
300 GEOIDAL_SEPARATION(12.0),MAGNETIC_VARIATION(13.0),COURSE_OVER_GROUND_MAGNETIC(14.0) |
|
301 GPS_TIMING_OF_CELL_MsPart(16383),GPS_TIMING_OF_CELL_LsPart(4294967295),REFERENCE_IDENTITY(511) |
|
302 SFN(4095)*/ |
|
303 |
|
304 TPosition gpsPos; |
|
305 positionInfo->GetPosition(gpsPos); |
|
306 TESTL(gpsPos.Latitude()==50.2454 && gpsPos.Longitude()== 0.1668 && gpsPos.Altitude()==1.0 |
|
307 && gpsPos.HorizontalAccuracy()==10 && gpsPos.VerticalAccuracy()==10); |
|
308 TCourse course; |
|
309 positionInfo->GetCourse(course); |
|
310 |
|
311 TESTL(course.Speed()==26.0 && course.VerticalSpeed()==20.0 && course.Heading()==25.0 && course.Course()==30.0 && |
|
312 course.SpeedAccuracy()==2.0 && course.VerticalSpeedAccuracy()==3.0 && course.HeadingAccuracy()==10.0 && |
|
313 course.CourseAccuracy()==4.0); |
|
314 |
|
315 TDetailedErrorReport detErrRep; |
|
316 positionInfo->GetDetailedErrorReport(detErrRep); |
|
317 TESTL(detErrRep.StanDeviOfLongitudeError()==5.0 && detErrRep.StanDeviOfLatiitudeError()==6.0 && |
|
318 detErrRep.StanDeviOfAltitudeError()==7.0 && detErrRep.StanDeviOfSemiMajorAxisError()==8.0 && |
|
319 detErrRep.StanDeviOfSemiMinorAxisError()==9.0 && detErrRep.OrientationOfSemiMajorAxisError()==10.0 && |
|
320 detErrRep.RmsValOfStanDeviOfRange()==11.0); |
|
321 |
|
322 TGpsTimingMeasurementData gpsTimingData; |
|
323 positionInfo->GetGpsTimingData(gpsTimingData); |
|
324 |
|
325 TESTL(gpsTimingData.DataType()== TGpsTimingMeasurementData::EGpsTimingDataTypeUtran && |
|
326 gpsTimingData.NetworkMode()== TGpsTimingMeasurementData::ENetworkModeFdd && |
|
327 gpsTimingData.GPSTimingOfCellMsPart()==16383 && gpsTimingData.GPSTimingOfCellLsPart()==4294967295LL && |
|
328 gpsTimingData.ReferenceIdentity()==511 && gpsTimingData.Sfn()==4095); |
|
329 |
|
330 |
|
331 TESTL(positionInfo->GeoidalSeparation()==12.0 && positionInfo->MagneticVariation()==13.0 && |
|
332 positionInfo->CourseOverGroundMagnetic()==14.0); |
|
333 |
|
334 |
|
335 // Client recv - the gps position determined by the gps module. |
|
336 CheckForObserverEventTestsL(KTimeOut, *this); |
|
337 // Check Positioning Status Indicator callback - |
|
338 //NOTE: GPS position and positioning indicator callback can be in any order |
|
339 CheckForObserverEventTestsL(KTimeOut, *this); |
|
340 //We should get Positioning Indicator flag off |
|
341 TESTL(iPosStatusCount==4); |
|
342 TESTL(iPositioningStatus == CLbsPositioningStatus::ELbsPositioningStatusNotActive); |
|
343 |
|
344 TESTL(iState == EGpsLocReceived); |
|
345 |
|
346 // << ProcessLocationUpdate(SessionId, FinalNetworkPosition) |
|
347 // Return modules' position as FinalNetworkPosition |
|
348 proxy->CallL(ENetMsgProcessLocationUpdate, &iSessionId, positionInfo); |
|
349 } |
|
350 CleanupStack::PopAndDestroy(cleanupCnt);// sessionId, measurementInfo/positionInfo |
|
351 } |
|
352 |
|
353 // << ProcessSessionComplete(SessionId, KErrNone) |
|
354 reason = KErrNone; |
|
355 proxy->CallL(ENetMsgProcessSessionComplete, &iSessionId, &reason); |
|
356 |
|
357 // << ENetMsgProcessStatusUpdate() |
|
358 MLbsNetworkProtocolObserver::TLbsNetProtocolServiceMask serviceMask = MLbsNetworkProtocolObserver::EServiceNone; |
|
359 proxy->CallL(ENetMsgProcessStatusUpdate, &serviceMask); |
|
360 |
|
361 // Wait for 10 seconds to ensure no additional responses turn up. |
|
362 delta = 10 * 1000 * 1000; |
|
363 TNetProtocolResponseType mType = proxy->WaitForResponse(delta); |
|
364 TESTL(mType == ENetMsgTimeoutExpired); |
|
365 |
|
366 // Done. Now cleanup... |
|
367 CleanupStack::PopAndDestroy(pWatch); |
|
368 CleanupStack::PopAndDestroy(); // pos |
|
369 CleanupStack::PopAndDestroy(); // server |
|
370 CleanupStack::PopAndDestroy(proxy); |
|
371 |
|
372 return TestStepResult(); |
|
373 } |
|
374 |
|
375 |
|
376 // MPosServerObserver |
|
377 void CT_LbsHybridUEAssistedNpudPosStatus::OnGetLastKnownPosition(TInt32 /*aErr*/, const TPositionInfoBase& /*aPosInfo*/) |
|
378 { |
|
379 TEST(EFalse); // Shouldn't see this... |
|
380 ReturnToTestStep(); |
|
381 } |
|
382 |
|
383 void CT_LbsHybridUEAssistedNpudPosStatus::OnNotifyPositionUpdate(TInt32 aErr, const TPositionInfoBase& aPosInfo) |
|
384 { |
|
385 // Verify error. |
|
386 if (aErr == KErrCancel) |
|
387 { |
|
388 iState = ERefLocReceived; |
|
389 } |
|
390 else |
|
391 { |
|
392 TEST(aErr == KErrNone); |
|
393 |
|
394 // Verify position. |
|
395 TEST(aPosInfo.PositionClassType() == EPositionInfoClass); |
|
396 |
|
397 // Expecting ref pos. |
|
398 if (iState == EInitializing) |
|
399 { |
|
400 iState = ERefLocReceived; |
|
401 |
|
402 TEST(aPosInfo.PositionMode() == TPositionModuleInfo::ETechnologyNetwork); |
|
403 |
|
404 // check for refpos details |
|
405 const TPositionInfo posInfo = static_cast<const TPositionInfo&>(aPosInfo); |
|
406 TESTL(ArgUtils::ComparePositionInfoToMolrRefPos(posInfo)); |
|
407 } |
|
408 |
|
409 // Expecting network pos. |
|
410 else if (iState == ERefLocReceived) |
|
411 { |
|
412 iState = EGpsLocReceived; |
|
413 |
|
414 TEST(aPosInfo.PositionMode() == (TPositionModuleInfo::ETechnologyTerminal | TPositionModuleInfo::ETechnologyAssisted)); |
|
415 } |
|
416 |
|
417 // Not expecting anything else. |
|
418 else |
|
419 { |
|
420 TEST(EFalse); |
|
421 } |
|
422 } |
|
423 ReturnToTestStep(); |
|
424 } |
|
425 |
|
426 void CT_LbsHybridUEAssistedNpudPosStatus::OnPositioningStatusUpdate(const CLbsPositioningStatus::TLbsPositioningStatus& aPositioningStatus) |
|
427 { |
|
428 iPosStatusCount++; |
|
429 iPositioningStatus = aPositioningStatus; |
|
430 ReturnToTestStep(); |
|
431 } |