Source

						public function testErrorTrapping() {
		ErrorHandler::stop();
		ErrorHandler::run(array('trapErrors' => true));

		// Undefined offset error shouldn't surface.
		list($foo, $bar) = array('baz');
	}