ZF-2586: Replace multiple dirname call

Description

It's a common practice to call dirname multiple times to require the TestHelper file from a parent directory.


require_once dirname(dirname(dirname(__FILE__))) . '/TestHelper.php';

The code above should be replaced with the following one


require_once dirname(__FILE__) . '/../../TestHelper.php';

Comments

Changing to comply with new IT coventions for components.