Exception: Screenplay::TestFailedException

Inherits:
StandardError
  • Object
show all
Defined in:
lib/screenplay/actors/test.rb

Instance Method Summary collapse

Constructor Details

#initialize(test, a, b) ⇒ TestFailedException

Returns a new instance of TestFailedException.



6
7
8
# File 'lib/screenplay/actors/test.rb', line 6

def initialize(test, a, b)
	super("#{test} on #{a.to_s} failed. Expected: #{b.to_s}.")
end