Method: FunctionalTestCase#perform
- Defined in:
- lib/test_case/functional_test_case.rb
#perform ⇒ Object
Public: Defines test case flow for functional tests.
Returns nothing.
18 19 20 21 22 23 24 |
# File 'lib/test_case/functional_test_case.rb', line 18 def perform begin super rescue Exception => e # swallow all exceptions, we have already logged/reported them at this point end end |