What is the difference between report_message and tl_step?

Showing Answers 1 - 7 of 7 Answers

Priya

  • Apr 8th, 2006
 

report_message is used to just report the results of any script or to print user defined messages.tl_step is a function used to return the o/p results of a test script. it actually return the status of a statement in a script or a script in 1 (fail) and 0( for pass) form

  Was this answer useful?  Yes

Parveen

  • Apr 10th, 2006
 

tl_step will drive the script into sections & inserts a status message in the last report for previous section.  In tl_step we can set whether the action is passed or failed.

Report_msg is used to write a message in the test results.

Parveen,Vzg

  Was this answer useful?  Yes

report_message is used to just report the results of any script or to print user defined messages.

tl_step: this function is used to send reports to TestDirector directly.

if the result come 0 then pass 1 then fail.

  Was this answer useful?  Yes

pavan

  • Apr 19th, 2006
 

Hi

pazhani told thats right . Report_msg , this will reports to the test results ,we can see this result manually and store it into txt file . tl_step also same but it will also reports to test directory

pavan

  Was this answer useful?  Yes

Mohan

  • Apr 26th, 2006
 

report_msg is used to get the results of script where as tl_step is used to tell the pass/fail status of partcular command in your script.

  Was this answer useful?  Yes

Sainath Boyapalli

  • Apr 26th, 2006
 

Tl_step: Reports the status of checkpoint to test report from within a script   Ex: Tl_step (?step1?, status, description)

 

 

Report_msg (? error  ? & Val ? ?): Sends the information about test script execution to test report, it does not affect the status of test.

 

 

  Was this answer useful?  Yes

jagannadha Prasad

  • May 13th, 2006
 

Report msg is similar to "message box" in VB it is used to just display the message that is associated with it,whereas tl_step is used to report the pass or fail status.

using the report_msg will not have any impact on the final result of the script but if we report a "Fail" message in tl_step the entire test will fail.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions