You are here

public function PaymentReferenceBaseTest::providerGetPluginSelector in Payment 8.2

Provides data to self::testGetPluginSelector().

File

tests/src/Unit/Element/PaymentReferenceBaseTest.php, line 583

Class

PaymentReferenceBaseTest
@coversDefaultClass \Drupal\payment\Element\PaymentReferenceBase

Namespace

Drupal\Tests\payment\Unit\Element

Code

public function providerGetPluginSelector() {
  return array(
    array(
      NULL,
    ),
    array(
      [],
    ),
    array(
      array(
        $this
          ->randomMachineName(),
        $this
          ->randomMachineName(),
      ),
    ),
  );
}