PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` getMockForAbstractClass('\Intervention\Image\AbstractShape'); $shape->background('foo'); $this->assertEquals('foo', $shape->background); $this->assertEquals(0, $shape->border_width); } public function testBorder() { $shape = $this->getMockForAbstractClass('\Intervention\Image\AbstractShape'); $shape->border(4); $this->assertEquals(4, $shape->border_width); $this->assertEquals('#000000', $shape->border_color); } public function testBorderWithColor() { $shape = $this->getMockForAbstractClass('\Intervention\Image\AbstractShape'); $shape->border(3, '#ff00ff'); $this->assertEquals(3, $shape->border_width); $this->assertEquals('#ff00ff', $shape->border_color); } public function testHasBorder() { $shape = $this->getMockForAbstractClass('\Intervention\Image\AbstractShape'); $this->assertFalse($shape->hasBorder()); $shape->border(1); $this->assertTrue($shape->hasBorder()); } }