1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-30 09:10:21 +02:00
This commit is contained in:
Oliver Vogel
2021-12-19 17:23:02 +01:00
parent 9f9e9e16ab
commit c070d7d7af

View File

@@ -23,6 +23,8 @@ class ResizeModifierTest extends TestCase
$this->assertColor(255, 0, 0, 1, $image->pickColor(150, 70));
$this->assertColor(0, 255, 0, 1, $image->pickColor(125, 70));
$this->assertColor(0, 0, 255, 1, $image->pickColor(130, 54));
$this->assertTransparency($image->pickColor(150, 45));
$transparent = $image->pickColor(150, 45);
$this->assertTransparency($transparent);
$this->assertEquals(2130706432, $transparent->toInt());
}
}