public function WebformMigrateTest::getFilesystemFixturePath in Webform: Migrate 8
Same name and namespace in other branches
- 8.2 tests/src/Kernel/Migrate/d7/WebformMigrateTest.php \Drupal\Tests\webform_migrate\Kernel\Migrate\d7\WebformMigrateTest::getFilesystemFixturePath()
Returns the absolute path to the file system fixture directory.
Return value
string The absolute path to the file system fixture directory.
Overrides WebformMigrateTestBase::getFilesystemFixturePath
File
- tests/
src/ Kernel/ Migrate/ d7/ WebformMigrateTest.php, line 59
Class
- WebformMigrateTest
- Tests webform migrations.
Namespace
Drupal\Tests\webform_migrate\Kernel\Migrate\d7Code
public function getFilesystemFixturePath() {
return implode(DIRECTORY_SEPARATOR, [
DRUPAL_ROOT,
drupal_get_path('module', 'webform_migrate'),
'tests',
'fixtures',
'files',
]);
}