# File test.rb, line 98
  def assert_nothing_raised
    begin
      yield
      @assertions << [true]
    rescue Exception => e
      @assertions << [false, e]
    end
  end