The location of the unit test to show in messages.

Property definitions

nitc $ UnitTest :: location
	# The location of the unit test to show in messages.
	fun location: Location is abstract
src/testing/testing_base.nit:185,2--186,35

nitc $ DocUnit :: location
	# The location of the whole docunit.
	#
	# If `self` is made of multiple code-blocks, then the location
	# starts at the first code-books and finish at the last one, thus includes anything between.
	redef var location is lazy do
		return new Location(mdoc.location.file, lines.first, lines.last+1, columns.first+1, 0)
	end
src/testing/testing_doc.nit:513,2--519,4

nitc $ TestCase :: location
	redef fun location do return test_method.location
src/testing/testing_suite.nit:366,2--50