stif/TestEngine/src/TestEngineClient.cpp
branchRCL_3
changeset 16 8f8df8006c40
parent 0 a03f92240627
equal deleted inserted replaced
14:a9c038d69df8 16:8f8df8006c40
   659 /*
   659 /*
   660 -------------------------------------------------------------------------------
   660 -------------------------------------------------------------------------------
   661 
   661 
   662     Class: RTestCase
   662     Class: RTestCase
   663 
   663 
       
   664     Method: RunTestCase
       
   665 
       
   666     Description: Run a test case asynchronously.
       
   667 
       
   668     Parameters: TFullTestResultPckg& aTestResult : TFullTestResult :
       
   669                  Test Result package
       
   670                 const TDesC& aTestCaseArgs: Test case arguments
       
   671                 TRequestStatus& aStatus : Request status
       
   672 
       
   673     Return Values: TInt KErrNone : Test case could be run
       
   674                         Other error code : Reason the test case couldn't be run
       
   675 
       
   676     Errors/Exceptions: None
       
   677 
       
   678     Status: Approved
       
   679 
       
   680 -------------------------------------------------------------------------------
       
   681 */
       
   682 EXPORT_C void RTestCase::RunTestCase( TFullTestResultPckg& aTestResult,
       
   683                                       const TDesC& aTestCaseArgs,
       
   684                                       TRequestStatus& aStatus )
       
   685     {
       
   686     TIpcArgs args( &aTestResult, &aTestCaseArgs, TIpcArgs::ENothing );
       
   687     SendReceive( ETestCaseRunTestCase, args, aStatus );
       
   688     }
       
   689 
       
   690 /*
       
   691 -------------------------------------------------------------------------------
       
   692 
       
   693     Class: RTestCase
       
   694 
   664     Method: Pause
   695     Method: Pause
   665 
   696 
   666     Description: Pause suspends the execution of the test case.
   697     Description: Pause suspends the execution of the test case.
   667 
   698 
   668     Parameters: None
   699     Parameters: None