function FileCopyTest::providerFileProcessBaseConstructor

Same name and namespace in other branches
  1. 8.9.x core/modules/migrate/tests/src/Unit/process/FileCopyTest.php \Drupal\Tests\migrate\Unit\process\FileCopyTest::providerFileProcessBaseConstructor()
  2. 10 core/modules/migrate/tests/src/Unit/process/FileCopyTest.php \Drupal\Tests\migrate\Unit\process\FileCopyTest::providerFileProcessBaseConstructor()
  3. 11.x core/modules/migrate/tests/src/Unit/process/FileCopyTest.php \Drupal\Tests\migrate\Unit\process\FileCopyTest::providerFileProcessBaseConstructor()

Data provider for testFileProcessBaseConstructor.

File

core/modules/migrate/tests/src/Unit/process/FileCopyTest.php, line 36

Class

FileCopyTest
Tests the file copy process plugin.

Namespace

Drupal\Tests\migrate\Unit\process

Code

public function providerFileProcessBaseConstructor() {
    return [
        [
            [
                'file_exists' => 'replace',
            ],
            FileSystemInterface::EXISTS_REPLACE,
        ],
        [
            [
                'file_exists' => 'rename',
            ],
            FileSystemInterface::EXISTS_RENAME,
        ],
        [
            [
                'file_exists' => 'use existing',
            ],
            FileSystemInterface::EXISTS_ERROR,
        ],
        [
            [
                'file_exists' => 'foobar',
            ],
            FileSystemInterface::EXISTS_REPLACE,
        ],
        [
            [],
            FileSystemInterface::EXISTS_REPLACE,
        ],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.