You are here

public function FileCopierFactoryTest::providerFactory in Automatic Updates 8.2

Data provider for ::testFactory().

Return value

mixed[][] Sets of arguments to pass to the test method.

File

package_manager/tests/src/Kernel/FileCopierFactoryTest.php, line 25

Class

FileCopierFactoryTest
@covers \Drupal\package_manager\FileCopierFactory

Namespace

Drupal\Tests\package_manager\Kernel

Code

public function providerFactory() : array {
  return [
    [
      'rsync',
    ],
    [
      'php',
    ],
    [
      NULL,
    ],
  ];
}