The name attribute of the XML format.

See to_xml

Property definitions

nitc $ UnitTest :: xml_name
	# The `name` attribute of the XML format.
	#
	# See to_xml
	fun xml_name: String is abstract
src/testing/testing_base.nit:294,2--297,33

nitc $ DocUnit :: xml_name
	redef var xml_name
src/testing/testing_doc.nit:547,2--19

nitc $ TestCase :: xml_name
	redef fun xml_name do
		var a = test_method.full_name.split("$")
		return a[2]
	end
src/testing/testing_suite.nit:464,2--467,4