changeset 15 | c1e808730d6c |
parent 0 | 40261b775718 |
13:efebd1779a59 | 15:c1e808730d6c |
---|---|
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 /** |
831 * are no setter accessors. |
831 * are no setter accessors. |
832 * |
832 * |
833 * @xxxx |
833 * @xxxx |
834 * |
834 * |
835 */ |
835 */ |
836 TInt RTestStep::StackSize() const |
836 EXPORT_C TInt RTestStep::StackSize() const |
837 { |
837 { |
838 return iStackSize; |
838 return iStackSize; |
839 } |
839 } |
840 |
840 |
841 TInt RTestStep::HeapSize() const |
841 EXPORT_C TInt RTestStep::HeapSize() const |
842 { |
842 { |
843 return iHeapSize; |
843 return iHeapSize; |
844 } |
844 } |
845 |
845 |
846 |
846 |