You are here

protected property EntityFieldQueryViewsTermTest::$entities_array in EntityFieldQuery Views Backend 8

Overrides EntityFieldQueryViewsTestBase::$entities_array

File

src/Tests/EntityFieldQueryViewsTermTest.php, line 55
Tests for EntityFieldQuery Views query features.

Class

EntityFieldQueryViewsTermTest
Class EntityFieldQueryViewsTermTest

Namespace

Drupal\efq_views\Tests

Code

protected $entities_array = array(
  array(
    'ebundle' => 'bundle1',
    'elabel' => 'test label 1',
    'uid' => 1,
    'test_boolean' => TRUE,
    'test_integer' => 15,
    'test_decimal' => 78,
    'test_duration' => 900,
    'test_date' => 1336236850,
    'test_text' => 'test text',
  ),
  array(
    'ebundle' => 'bundle1',
    'elabel' => 'string label 2',
    'uid' => 1,
    'test_boolean' => FALSE,
    'test_integer' => 17,
    'test_decimal' => 80,
    'test_duration' => 1500,
    'test_date' => 1336366325,
    'test_text' => 'another test text',
  ),
  array(
    'ebundle' => 'bundle1',
    'elabel' => 'test label 3',
    'uid' => 1,
    'test_boolean' => TRUE,
    'test_integer' => 18,
    'test_decimal' => -5,
    'test_duration' => 900,
    'test_date' => 1336234000,
    'test_text' => 'test text',
  ),
  array(
    'ebundle' => 'bundle1',
    'elabel' => 'string label 4',
    'uid' => 1,
    'test_boolean' => FALSE,
    'test_integer' => 19,
    'test_decimal' => 90,
    'test_duration' => 1500,
    'test_date' => 1336266000,
    'test_text' => 'another test text',
  ),
);