Property definitions

popcorn $ ClientThread :: defaultinit
# Thread running the test client.
class ClientThread
	super Thread

	# Test suite to execute.
	var test_suite: TestPopcorn

	redef fun main do
		test_suite.client_test
		print ""
		return null
	end
end
lib/popcorn/pop_tests.nit:112,1--124,3