function ViewsTest::providerTestGetApplicableViews

Data provider for testGetApplicableViews.

Return value

array An array of test data.

File

core/modules/views/tests/src/Unit/ViewsTest.php, line 221

Class

ViewsTest
Tests Drupal\views\Views.

Namespace

Drupal\Tests\views\Unit

Code

public static function providerTestGetApplicableViews() {
  return [
    [
      'type_a',
      [
        [
          'test_view_1',
          'type_a',
        ],
      ],
    ],
    [
      'type_b',
      [
        [
          'test_view_2',
          'type_b',
        ],
      ],
    ],
    [
      'type_c',
      [],
    ],
  ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.