# File lib/facon/expectation.rb, line 83
    def met?
      return true if @expected_received_count == :any ||
        @expected_received_count == @actual_received_count

      raise_expectation_error(self)
    end