You are here

function CurrencyAccessControlHandlerTest::providerTestCheckCreateAccess in Currency 8.3

Provides data to self::testCheckCreateAccess().

File

tests/src/Unit/Entity/Currency/CurrencyAccessControlHandlerTest.php, line 177

Class

CurrencyAccessControlHandlerTest
@coversDefaultClass Drupal\currency\Entity\Currency\CurrencyAccessControlHandler

Namespace

Drupal\Tests\currency\Unit\Entity\Currency

Code

function providerTestCheckCreateAccess() {
  return array(
    array(
      TRUE,
      TRUE,
    ),
    array(
      FALSE,
      FALSE,
    ),
  );
}