class RSpec::Mocks::AnyInstance::NegativeExpectationChain

@api private

def initialize(*args, &block)

def initialize(*args, &block)
  super(:should_not_receive, *args, &block)
end

def invocation_order

def invocation_order
  @invocation_order ||= {
    :should_not_receive => [nil],
    :with => [:should_receive],
    :and_return => [:with, :should_receive],
    :and_raise => [:with, :should_receive]
  }
end