Exemplo n.º 1
0
 /**
  * Tests \Drupal\Core\Image\Image::save().
  */
 public function testSaveFails()
 {
     $this->getTestImage();
     // This will fail if save() method isn't called on the toolkit.
     $this->toolkit->expects($this->once())->method('save')->will($this->returnValue(FALSE));
     $this->assertFalse($this->image->save());
 }