Render the test module as a Nit string

Property definitions

markdown2 $ TestFile :: render
	# Render the test module as a Nit string
	fun render: String do
		var tpl = new Template
		tpl.add header
		for test_class in test_classes do
			tpl.add test_class.render
		end
		return tpl.write_to_string
	end
lib/markdown2/tests/commonmark_gen.nit:182,2--190,4