mirror of
https://github.com/Intervention/image.git
synced 2025-08-25 14:50:48 +02:00
Rename test functions
This commit is contained in:
@@ -18,7 +18,7 @@ final class PlaceModifierTest extends ImagickTestCase
|
||||
{
|
||||
$image = $this->readTestImage('test.jpg');
|
||||
$this->assertEquals('febc44', $image->pickColor(300, 25)->toHex());
|
||||
$image->modify(new PlaceModifier($this->getTestImagePath('circle.png'), 'top-right', 0, 0));
|
||||
$image->modify(new PlaceModifier($this->getTestResourcePath('circle.png'), 'top-right', 0, 0));
|
||||
$this->assertEquals('33260e', $image->pickColor(300, 25)->toHex());
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@ final class PlaceModifierTest extends ImagickTestCase
|
||||
{
|
||||
$image = $this->readTestImage('test.jpg');
|
||||
$this->assertEquals('febc44', $image->pickColor(300, 25)->toHex());
|
||||
$image->modify(new PlaceModifier($this->getTestImagePath('circle.png'), 'top-right', 0, 0, 50));
|
||||
$image->modify(new PlaceModifier($this->getTestResourcePath('circle.png'), 'top-right', 0, 0, 50));
|
||||
$this->assertEquals('987129', $image->pickColor(300, 25)->toHex());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user