Property definitions

nitc $ TestClass :: defaultinit
# A test class contains multiple test cases
#
# For each test class, methods can be executed before and after all cases.
class TestClass
	# List of `TestCase` to be executed in this suite.
	var test_cases = new Array[TestCase]

	# Tests to be executed before the whole test suite.
	var before_all = new Array[TestCase]

	# Tests to be executed after the whole test suite.
	var after_all = new Array[TestCase]
end
src/testing/testing_suite.nit:334,1--346,3