# File lib/mocha/return_values.rb, line 17
17:     def next
18:       case @values.length
19:         when 0 then nil
20:         when 1 then @values.first.evaluate
21:         else @values.shift.evaluate
22:       end
23:     end