You are here

protected property VariableMultiRowTestBase::$expectedResults in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/migrate_drupal/tests/src/Unit/source/VariableMultiRowTestBase.php \Drupal\Tests\migrate_drupal\Unit\source\VariableMultiRowTestBase::expectedResults

Expected results after the source parsing.

Type: array

Overrides MigrateSqlSourceTestCase::$expectedResults

File

core/modules/migrate_drupal/tests/src/Unit/source/VariableMultiRowTestBase.php, line 33
Contains \Drupal\Tests\migrate_drupal\Unit\source\VariableMultiRowTestBase.

Class

VariableMultiRowTestBase
Base class for variable multirow source unit tests.

Namespace

Drupal\Tests\migrate_drupal\Unit\source

Code

protected $expectedResults = array(
  array(
    'name' => 'foo',
    'value' => 1,
  ),
  array(
    'name' => 'bar',
    'value' => FALSE,
  ),
);