Module: TDriverCustomErrorRecovery
- Included in:
- TDriverReportCreator
- Defined in:
- lib/tdriver/report/error_recovery/tdriver_custom_error_recovery.rb
Overview
Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. Contact: Nokia Corporation ([email protected])
This file is part of Testability Driver.
If you have questions regarding the use of this file, please contact Nokia at [email protected] .
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the packaging of this file.
Instance Method Summary collapse
-
#ending_test_case(status, connected_suts) ⇒ Object
This method is called by TDriver Reporter when test case execution is ended === params connected_suts: All the connected TDriver suts === returns === raises.
-
#ending_test_set_run ⇒ Object
This method is called by TDriver Reporter when test set execution is ending === params === returns === raises.
-
#error_in_connection ⇒ Object
This method is called by TDriver Reporter when error is detected in connection === params === returns === raises.
-
#error_in_test_case(connected_suts) ⇒ Object
This method is called by TDriver Reporter when a error is detected in test case execution === params connected_suts: All the connected TDriver suts === returns === raises.
-
#starting_test_case(test_case, connected_suts) ⇒ Object
This method is called by TDriver Reporter when test case execution is starting === params test_case: the test case name connected_suts: All the connected TDriver suts === returns === raises.
-
#starting_test_set_run ⇒ Object
This method is called by TDriver Reporter when test set execution is starting === params === returns === raises.
-
#updating_test_case_details(details) ⇒ Object
This method is called by TDriver Reporter when test case details are updated === params details: Execution details recived from the current test case === returns === raises.
Instance Method Details
#ending_test_case(status, connected_suts) ⇒ Object
This method is called by TDriver Reporter when test case execution is ended
params
connected_suts: All the connected TDriver suts
returns
raises
71 72 73 |
# File 'lib/tdriver/report/error_recovery/tdriver_custom_error_recovery.rb', line 71 def ending_test_case(status,connected_suts) end |
#ending_test_set_run ⇒ Object
This method is called by TDriver Reporter when test set execution is ending
params
returns
raises
79 80 81 |
# File 'lib/tdriver/report/error_recovery/tdriver_custom_error_recovery.rb', line 79 def ending_test_set_run() end |
#error_in_connection ⇒ Object
This method is called by TDriver Reporter when error is detected in connection
params
returns
raises
26 27 28 |
# File 'lib/tdriver/report/error_recovery/tdriver_custom_error_recovery.rb', line 26 def error_in_connection() end |
#error_in_test_case(connected_suts) ⇒ Object
This method is called by TDriver Reporter when a error is detected in test case execution
params
connected_suts: All the connected TDriver suts
returns
raises
53 54 55 |
# File 'lib/tdriver/report/error_recovery/tdriver_custom_error_recovery.rb', line 53 def error_in_test_case(connected_suts) end |
#starting_test_case(test_case, connected_suts) ⇒ Object
This method is called by TDriver Reporter when test case execution is starting
params
test_case: the test case name connected_suts: All the connected TDriver suts
returns
raises
44 45 46 |
# File 'lib/tdriver/report/error_recovery/tdriver_custom_error_recovery.rb', line 44 def starting_test_case(test_case,connected_suts) end |
#starting_test_set_run ⇒ Object
This method is called by TDriver Reporter when test set execution is starting
params
returns
raises
34 35 36 |
# File 'lib/tdriver/report/error_recovery/tdriver_custom_error_recovery.rb', line 34 def starting_test_set_run() end |
#updating_test_case_details(details) ⇒ Object
This method is called by TDriver Reporter when test case details are updated
params
details: Execution details recived from the current test case
returns
raises
62 63 64 |
# File 'lib/tdriver/report/error_recovery/tdriver_custom_error_recovery.rb', line 62 def updating_test_case_details(details) end |