You are here

protected property VariableMultiRowTestBase::$databaseContents in Drupal 8

The database contents.

Database contents represents a mocked database. It should contain an associative array with the table name as key, and as many nested arrays as the number of mocked rows. Each of those faked rows must be another array with the column name as the key and the value as the cell.

Type: array

Overrides MigrateSqlSourceTestCase::$databaseContents

File

core/modules/migrate_drupal/tests/src/Unit/source/VariableMultiRowTestBase.php, line 33

Class

VariableMultiRowTestBase
Base class for variable multirow source unit tests.

Namespace

Drupal\Tests\migrate_drupal\Unit\source

Code

protected $databaseContents = [
  'variable' => [
    [
      'name' => 'foo',
      'value' => 'i:1;',
    ],
    [
      'name' => 'bar',
      'value' => 'b:0;',
    ],
  ],
];