Example #1
0
 public function testCharset()
 {
     $charset = 'test_charset';
     $this->model->setCharset($charset);
     $this->assertEquals($charset, $this->model->getCharset());
 }
 /**
  * {@inheritdoc}
  */
 public function setCharset($charset)
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCharset');
     if (!$pluginInfo) {
         return parent::setCharset($charset);
     } else {
         return $this->___callPlugins('setCharset', func_get_args(), $pluginInfo);
     }
 }