----------------------------------------
* CRM-13012: Run api_v3_SyntaxConformanceAllEntitiesTest with hrjob API's
http://issues.civicrm.org/jira/browse/CRM-13012
* CRM-13250: Add Contact Type and Subtype as a Column to Reports
http://issues.civicrm.org/jira/browse/CRM-13250
foreach (array_diff($newClassNames,
$oldClassNames
) as $name) {
- if (preg_match('/Test$/', $name)) {
- $addTestSuites[] = $name;
+ if (strpos($fileInfo->getRealPath(), str_replace('_', '/', $name) . ".php") !== FALSE) {
+ if (preg_match('/Test$/', $name)) {
+ $addTestSuites[] = $name;
+ }
}
}
}