You are here

public function EntityPrintPluginManagerTest::getDisabledDefinitionsDataProvider in Entity Print 8.2

Data provider for getDisabledDefinitions test.

File

tests/src/Kernel/EntityPrintPluginManagerTest.php, line 88

Class

EntityPrintPluginManagerTest
@coversDefaultClass \Drupal\entity_print\Plugin\EntityPrintPluginManager @group entity_print

Namespace

Drupal\Tests\entity_print\Kernel

Code

public function getDisabledDefinitionsDataProvider() {
  return [
    'Filter by pdf' => [
      'pdf',
      [
        'dompdf',
        'phpwkhtmltopdf',
        'tcpdfv1',
        'not_available_print_engine',
      ],
    ],
    'Filter by another type' => [
      'word_docx',
      [],
    ],
  ];
}