Exception: Screenplay::TestFailedException
- Inherits:
-
StandardError
- Object
- StandardError
- Screenplay::TestFailedException
- Defined in:
- lib/screenplay/actors/test.rb
Instance Method Summary collapse
-
#initialize(test, a, b) ⇒ TestFailedException
constructor
A new instance of TestFailedException.
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 |