function GetTest::integerValuesDataProvider
Provides data for the successful lookup test.
Return value
array
File
- 
              core/modules/ migrate/ tests/ src/ Unit/ process/ GetTest.php, line 98 
Class
- GetTest
- Tests the get process plugin.
Namespace
Drupal\Tests\migrate\Unit\processCode
public function integerValuesDataProvider() {
  return [
    [
      'source' => [
        0 => 0,
        1 => 'test',
      ],
      'expected_value' => [
        0 => 'val1',
        1 => 'val2',
      ],
    ],
    [
      'source' => [
        FALSE,
      ],
      'expected_value' => [
        NULL,
      ],
    ],
    [
      'source' => [
        NULL,
      ],
      'expected_value' => [
        NULL,
      ],
    ],
  ];
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
