You are here

public function PaymentReferenceBaseTest::providerTestPay in Payment 8.2

Provides data to self::testPay().

File

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

Class

PaymentReferenceBaseTest
@coversDefaultClass \Drupal\payment\Element\PaymentReferenceBase

Namespace

Drupal\Tests\payment\Unit\Element

Code

public function providerTestPay() {
  return array(
    array(
      TRUE,
      TRUE,
    ),
    array(
      TRUE,
      FALSE,
    ),
    array(
      FALSE,
      FALSE,
    ),
  );
}