You are here

function CurrencyLocaleAccessControlHandlerTest::providerTestCheckCreateAccess in Currency 8.3

Provides data to self::testCheckCreateAccess().

File

tests/src/Unit/Entity/CurrencyLocale/CurrencyLocaleAccessControlHandlerTest.php, line 157

Class

CurrencyLocaleAccessControlHandlerTest
@coversDefaultClass Drupal\currency\Entity\CurrencyLocale\CurrencyLocaleAccessControlHandler

Namespace

Drupal\Tests\currency\Unit\Entity\CurrencyLocale

Code

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