You are here

public function ConvolutionTest::providerToolkits in Image Effects 8.3

Same name and namespace in other branches
  1. 8 tests/src/Functional/Effect/ConvolutionTest.php \Drupal\Tests\image_effects\Functional\Effect\ConvolutionTest::providerToolkits()
  2. 8.2 tests/src/Functional/Effect/ConvolutionTest.php \Drupal\Tests\image_effects\Functional\Effect\ConvolutionTest::providerToolkits()

Provides toolkit data for testing.

Return value

array[] An associative array, with key the toolkit scenario to be tested, and value an associative array with the following keys:

  • 'toolkit_id': the toolkit to be used in the test.
  • 'toolkit_config': the config object of the toolkit.
  • 'toolkit_settings': an associative array of toolkit settings.

Overrides ImageEffectsTestBase::providerToolkits

File

tests/src/Functional/Effect/ConvolutionTest.php, line 17

Class

ConvolutionTest
Convolution effect test.

Namespace

Drupal\Tests\image_effects\Functional\Effect

Code

public function providerToolkits() {
  $toolkits = parent::providerToolkits();

  // @todo This effect does not work on GraphicsMagick.
  unset($toolkits['ImageMagick-graphicsmagick']);
  return $toolkits;
}