The name of the unit to show in messages

Property definitions

nitc $ UnitTest :: full_name
	# The name of the unit to show in messages
	fun full_name: String is abstract
src/testing/testing_base.nit:182,2--183,34

nitc $ DocUnit :: full_name
	redef fun full_name do
		var mentity = mdoc.original_mentity
		if mentity != null then
			var res = mentity.full_name
			if number > 1 then
				res += "#{number}"
			end
			return res
		else
			return xml_classname + "." + xml_name
		end
	end
src/testing/testing_doc.nit:485,2--496,4

nitc $ TestCase :: full_name
	redef fun full_name do return test_method.full_name
src/testing/testing_suite.nit:364,2--52