def report
index_file = File.new(FrankensteinDriver.test_dir + "/" + "index.html", "w+")
index_file.puts "<html>"
index_file.puts "<head><title>Test Results</title></head>"
index_file.puts "<body>"
index_file.puts "<h3>Test Results</h3><br>"
index_file.puts "<table BORDER CELLSPACING=0 CELLPADDING=4>"
@tests.each do |value|
index_file.puts "<tr><td bgcolor=#{value.status}><font size=2 color=black><a href=\"#{value.test}.html\">#{value.test}</a></font></td></tr>"
end
index_file.puts "</table>"
index_file.puts "</body>"
index_file.puts "</html>"
index_file.close
end