class Tryouts::ExpectationEvaluators::Base

def initialize(expectation, test_case, context)

Parameters:
  • context (Object) -- the context in which to evaluate expectations
  • test_case (Object) -- the test case being evaluated
  • expectation (Object) -- the expectation object containing content and metadata
def initialize(expectation, test_case, context)
  @expectation = expectation
  @test_case   = test_case
  @context     = context
end