You are here

public function SettingsHelperTest::providerTestGetUdfLimitsForType in Acquia Lift Connector 8.4

Same name and namespace in other branches
  1. 8.3 tests/src/Unit/Service/Helper/SettingsHelperTest.php \Drupal\Tests\acquia_lift\Unit\Service\Helper\SettingsHelperTest::providerTestGetUdfLimitsForType()

Data provider for testGetUdfLimitsForType().

File

tests/src/Unit/Service/Helper/SettingsHelperTest.php, line 230

Class

SettingsHelperTest
SettingsHelper Test.

Namespace

Drupal\Tests\acquia_lift\Unit\Service\Helper

Code

public function providerTestGetUdfLimitsForType() {
  $data = [];
  $data['person'] = [
    'person',
    50,
  ];
  $data['touch'] = [
    'touch',
    20,
  ];
  $data['event'] = [
    'event',
    50,
  ];
  return $data;
}