1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
# Test event subscriber.
#
# @since 2.5.0
class EventSubscriber
class << self
# The started events.
#
# @since 2.5.0
def started_events
@started_events ||= []
end
# The succeeded events.
#
# @since 2.5.0
def succeeded_events
@succeeded_events ||= []
end
# The failed events.
#
# @since 2.5.0
def failed_events
@failed_events ||= []
end
# Cache the succeeded event.
#
# @param [ Event ] event The event.
#
# @since 2.5.0
def succeeded(event)
succeeded_events.push(event)
end
# Cache the started event.
#
# @param [ Event ] event The event.
#
# @since 2.5.0
def started(event)
started_events.push(event)
end
# Cache the failed event.
#
# @param [ Event ] event The event.
#
# @since 2.5.0
def failed(event)
failed_events.push(event)
end
# Clear all cached events.
#
# @since 2.5.1
def clear_events!
@started_events = []
@succeeded_events = []
@failed_events = []
self
end
end
end
|