Return the test suite in XML format compatible with Jenkins.

Contents depends on the run execution.

Property definitions

nitc $ TestSuite :: to_xml
	# Return the test suite in XML format compatible with Jenkins.
	# Contents depends on the `run` execution.
	fun to_xml: HTMLTag do
		var n = new HTMLTag("testsuite")
		n.attr("package", mmodule.name)
		for test_class in test_classes do
			for test in test_class.test_cases do n.add test.to_xml
		end
		return n
	end
src/testing/testing_suite.nit:284,2--293,4