getFeatureTestPath static method
Gets the path for a feature test directory.
Implementation
static String getFeatureTestPath(String appsName, String featureName) {
if (appsName.isNotEmpty) {
return join(current, 'apps', appsName, 'features', featureName, 'test');
}
return join(current, 'features', featureName, 'test');
}