save() public method

Save upload editor
public save ( ) : void
return void
Esempio n. 1
0
 /**
  * Test
  *
  * @return void
  */
 public function testSave()
 {
     $this->object->getRequest()->getPost()->set($this->object->getName(), 'http://got-cms.com');
     $this->object->save();
     $this->assertEquals($this->serializedString, $this->object->getValue());
 }