You are here

public function ImageEffectsTestBase::assertColorsAreEqual in Image Effects 8.3

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

Assert two colors are equal by RGBA.

11 calls to ImageEffectsTestBase::assertColorsAreEqual()
BackgroundTest::testBackgroundEffect in tests/src/Functional/Effect/BackgroundTest.php
Background effect test.
BrightnessTest::testBrightnessEffect in tests/src/Functional/Effect/BrightnessTest.php
Brightness effect test.
ColorShiftTest::testColorShiftEffect in tests/src/Functional/Effect/ColorShiftTest.php
Color Shift effect test.
GaussianBlurTest::testGaussianBlurEffect in tests/src/Functional/Effect/GaussianBlurTest.php
Gaussian blur effect test.
InvertTest::testInvertEffect in tests/src/Functional/Effect/InvertTest.php
Invert effect test.

... See full list

File

tests/src/Functional/ImageEffectsTestBase.php, line 272

Class

ImageEffectsTestBase
Base test class for image_effects tests.

Namespace

Drupal\Tests\image_effects\Functional

Code

public function assertColorsAreEqual(array $actual, array $expected) : void {
  $this
    ->assertColorsAreClose($actual, $expected, 0);
}