The classname attribute of the XML format.

NOTE: jenkins expects a '.' in the classname attr

See to_xml

Property definitions

nitc $ UnitTest :: xml_classname
	# The `classname` attribute of the XML format.
	#
	# NOTE: jenkins expects a '.' in the classname attr
	#
	# See to_xml
	fun xml_classname: String is abstract
src/testing/testing_base.nit:287,2--292,38

nitc $ DocUnit :: xml_classname
	redef var xml_classname
src/testing/testing_doc.nit:546,2--24

nitc $ TestCase :: xml_classname
	redef fun xml_classname do
		var a = test_method.full_name.split("$")
		return "nitunit.{a[0]}.{a[1]}"
	end
src/testing/testing_suite.nit:459,2--462,4