Run the test suite on the App.

Property definitions

popcorn $ TestPopcorn :: run_test
	# Run the test suite on the App.
	fun run_test(app: App) do
		var server = new AppThread(host, port, app)
		server.start
		0.1.sleep

		var client = new ClientThread(self)
		client.start
		client.join
		0.1.sleep

		exit 0
	end
lib/popcorn/pop_tests.nit:140,2--152,4