Exemple #1
0
 public function testCreateClientNameNotFound()
 {
     $this->setExpectedException('\\Aimeos\\Client\\Html\\Exception');
     \Aimeos\Client\Html\Account\Watch\Factory::createClient($this->context, $this->templatePaths, 'notfound');
 }
 /**
  * Renders the account watch list.
  */
 public function watchAction()
 {
     $templatePaths = Base::getAimeos()->getCustomPaths('client/html');
     $client = \Aimeos\Client\Html\Account\Watch\Factory::createClient($this->getContext(), $templatePaths);
     return $this->getClientOutput($client);
 }