Sha256: 67bdd4c782b2d240bfb0a8d1c0a9d24daf858e76fd8a859af1069a0f3ae566c8
Contents?: true
Size: 512 Bytes
Versions: 11
Compression:
Stored size: 512 Bytes
Contents
module Cucumber module Events # Event fired after a test case has finished executing class AfterTestCase # The test case that was just executed. # # @return [Cucumber::Core::Test::Case] attr_reader :test_case # The result of executing the test case. # # @return [Cucumber::Core::Test::Result] attr_reader :result # @private def initialize(test_case, result) @test_case, @result = test_case, result end end end end
Version data entries
11 entries across 11 versions & 2 rubygems