# File lib/flexmock.rb, line 416
416:     def initialize(mock, sym)
417:       @mock = mock
418:       @sym = sym
419:       @expected_args = nil
420:       @count_validators = []
421:       @count_validator_class = ExactCountValidator
422:       @actual_count = 0
423:       @return_value = nil
424:       @return_block = lambda { @return_value }
425:       @order_number = nil
426:     end