示例#1
0
 public function testCreateClientNameNotFound()
 {
     $this->setExpectedException('Client_Html_Exception');
     Client_Html_Account_History_Factory::createClient($this->_context, $this->_templatePaths, 'notfound');
 }
示例#2
0
 /**
  * Renders the account history.
  */
 public function historyAction()
 {
     $templatePaths = Base::getAimeos()->getCustomPaths('client/html');
     $client = \Client_Html_Account_History_Factory::createClient($this->getContext(), $templatePaths);
     return $this->getClientOutput($client);
 }