You are here

public function ChartsTypeInfoTest::chartsChartsTypeInfo in Charts 8.3

Data provider for testChartsChartsTypeInfo(), testGetChartTypes and testGetChartType().

File

tests/src/Unit/Settings/ChartsTypeInfoTest.php, line 48

Class

ChartsTypeInfoTest
Tests the ChartsTypeInfo class.

Namespace

Drupal\Tests\charts\Unit\Settings

Code

public function chartsChartsTypeInfo() {
  (yield [
    'area',
  ]);
  (yield [
    'bar',
  ]);
  (yield [
    'column',
  ]);
  (yield [
    'donut',
  ]);
  (yield [
    'gauge',
  ]);
  (yield [
    'line',
  ]);
  (yield [
    'pie',
  ]);
  (yield [
    'scatter',
  ]);
  (yield [
    'spline',
  ]);
}