You are here

public function SortableviewsTest::dataProvider in Sortableviews 8

Provides data for testAccess().

File

tests/src/Functional/SortableviewsTest.php, line 73

Class

SortableviewsTest
Verifies form of sortableviews.

Namespace

Drupal\Tests\sortableviews\Functional

Code

public function dataProvider() {
  $data = [];
  $data[] = [
    'ul',
  ];
  $data[] = [
    'ol',
  ];
  $data[] = [
    'unformatted',
  ];
  $data[] = [
    'table',
  ];
  return $data;
}