# File lib/facon/proxy.rb, line 33
    def add_negative_expectation(expected_from, method, &block)
      add_method(method)

      @expectations << NegativeExpectation.new(@error_generator, @expectation_ordering, expected_from, method, (block_given? ? block : nil))
      @expectations.last
    end