map.put(ProjectSuite.INCLUDE_PATH, new String[] { "library" });
map.put(ProjectSuite.REFERENCED_FILE,
new String[] { "library/Zend/View/Helper/Abstract.php" });
map.put(ProjectSuite.REFERENCING_FILE,
new String[] { "library/Zend/View/Helper/Action.php" });
Test test = new ProjectSuite().suite(map);
suite.addTest(test);
map = new HashMap();
map.put(ProjectSuite.PROJECT, PROJECT);
map.put(ProjectSuite.URL, URL);
map.put(ProjectSuite.TYPE, TYPE);
map.put(ProjectSuite.PHP_VERSION, PHPVersion.PHP5_3);
map.put(ProjectSuite.CHANGE_INCLUDE_PATH, Boolean.TRUE);
map.put(ProjectSuite.INCLUDE_PATH, new String[] { "library" });
test = new ProjectSuite().suite(map);
suite.addTest(test);
return suite;
}