public function testCreateClientNameNotFound()
 {
     $this->setExpectedException('Client_Html_Exception');
     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 = \Client_Html_Account_Watch_Factory::createClient($this->getContext(), $templatePaths);
     return $this->getClientOutput($client);
 }