/**
	 * Run the next text from the array.
	 */
	void ApplicationController::runNextTest()
	{
		if (mTests.size() == 0)
		{
			this->finishTesting();
			return;
		}
		this->log("================================");
		ITest* test = mTests[0];
		char buffer[BUF_MAX];
		sprintf(buffer, "Started %s", test->getTestName().c_str());
		this->log(buffer);
		test->startTest();
	}