mmtestenv/mmtestfw/Source/TestFrameworkClient/TestStep.cpp
branchRCL_3
changeset 12 b74061f7f3d2
parent 11 d5f04de580b7
equal deleted inserted replaced
11:d5f04de580b7 12:b74061f7f3d2
   181  *			The test suite
   181  *			The test suite
   182  *
   182  *
   183  * @xxxx
   183  * @xxxx
   184  *
   184  *
   185  */
   185  */
   186 void RTestStep::SetSuite(CTestSuite* aSuite)
   186 EXPORT_C void RTestStep::SetSuite(CTestSuite* aSuite)
   187 	{
   187 	{
   188 	iSuite = aSuite;
   188 	iSuite = aSuite;
   189 	}
   189 	}
   190 
   190 
   191 /**
   191 /**
   196  *			The test result
   196  *			The test result
   197  *
   197  *
   198  * @xxxx
   198  * @xxxx
   199  *
   199  *
   200  */
   200  */
   201 void RTestStep::SetResult(TVerdict aResult)
   201 EXPORT_C void RTestStep::SetResult(TVerdict aResult)
   202 	{
   202 	{
   203 	iTestStepResult = aResult;
   203 	iTestStepResult = aResult;
   204 	}
   204 	}
   205 
   205 
   206 /**
   206 /**
   211  *			The step name
   211  *			The step name
   212  *
   212  *
   213  * @xxxx
   213  * @xxxx
   214  *
   214  *
   215  */
   215  */
   216 TPtrC RTestStep::StepName() const
   216 EXPORT_C TPtrC RTestStep::StepName() const
   217 	{
   217 	{
   218 	return iTestStepName;
   218 	return iTestStepName;
   219 	}
   219 	}
   220 
   220 
   221 /**
   221 /**