# File lib/flexmock/expectation.rb, line 34
34:     def initialize(mock, sym)
35:       @mock = mock
36:       @sym = sym
37:       @expected_args = nil
38:       @count_validators = []
39:       @count_validator_class = ExactCountValidator
40:       @actual_count = 0
41:       @return_value = nil
42:       @return_block = lambda { @return_value }
43:       @order_number = nil
44:     end