# File lib/flexmock.rb, line 473
473:     def initialize(mock, sym)
474:       @mock = mock
475:       @sym = sym
476:       @expected_args = nil
477:       @count_validators = []
478:       @count_validator_class = ExactCountValidator
479:       @actual_count = 0
480:       @return_value = nil
481:       @return_block = lambda { @return_value }
482:       @order_number = nil
483:     end