예제 #1
0
 /**
  * @covers MediaAlchemyst\Specification\Image::setStrip
  * @covers MediaAlchemyst\Specification\Image::getStrip
  */
 public function testSetStrip()
 {
     $this->object->setStrip(true);
     $this->assertEquals(true, $this->object->getStrip());
     $this->object->setStrip(false);
     $this->assertEquals(false, $this->object->getStrip());
 }