getFeatureTestPath static method

String getFeatureTestPath(
  1. String appsName,
  2. String featureName
)

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');
}