You are here

public function ChartServiceTest::libraryProvider in Charts 8.4

Same name and namespace in other branches
  1. 8.3 tests/src/Unit/Services/ChartServiceTest.php \Drupal\Tests\charts\Unit\Services\ChartServiceTest::libraryProvider()
  2. 5.0.x tests/src/Unit/Services/ChartServiceTest.php \Drupal\Tests\charts\Unit\Services\ChartServiceTest::libraryProvider()

Data provider for testLibrarySelected.

File

tests/src/Unit/Services/ChartServiceTest.php, line 46

Class

ChartServiceTest
@coversDefaultClass \Drupal\charts\Services\ChartService @group charts

Namespace

Drupal\Tests\charts\Unit\Services

Code

public function libraryProvider() {
  (yield [
    'highcharts',
  ]);
  (yield [
    'google',
  ]);
}