nitc :: UnitTest :: xml_classname
classname
attribute of the XML format.NOTE: jenkins expects a '.' in the classname attr
See to_xml
# 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
redef var xml_classname
src/testing/testing_doc.nit:546,2--24
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