You are here

protected property VariableTest::$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/VariableTest.php, line 36

Class

VariableTest
Tests the variable source plugin.

Namespace

Drupal\Tests\migrate_drupal\Unit\source

Code

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