/**
  * enable testTsRatings
  */
 protected function _enableTsRatings()
 {
     $oServiceCaller = new \OxidEsales\TestingLibrary\ServiceCaller();
     $oServiceCaller->setParameter('cl', 'dyn_trusted');
     $oServiceCaller->setParameter('fnc', 'save');
     $oServiceCaller->setParameter('editval', array('oxshops__oxid' => oxSHOPID));
     $oServiceCaller->setParameter('aTsUser', array('', ''));
     $oServiceCaller->setParameter('aTsPassword', array('', ''));
     $oServiceCaller->setParameter('tsSealActive', true);
     $oServiceCaller->setParameter('aShopID_TrustedShops', array($this->getLoginDataByName('trustedShopsIdForLanguageDe'), $this->getLoginDataByName('trustedShopsIdForLanguageEn')));
     $oServiceCaller->setParameter('paymentids', array("oxidcashondel" => "DIRECT_DEBIT", "oxidcreditcard" => "DIRECT_DEBIT", "oxiddebitnote" => "DIRECT_DEBIT", "oxidpayadvance" => "DIRECT_DEBIT", "oxidinvoice" => "DIRECT_DEBIT", "oxempty" => "DIRECT_DEBIT", "testpayment" => "DIRECT_DEBIT"));
     $_POST = $oServiceCaller->getParameters();
     try {
         $oServiceCaller->callService('ShopObjectConstructor');
     } catch (Exception $oException) {
         $this->fail("Exception caught calling ShopObjectConstructor with message: '{$oException->getMessage()}'");
     }
 }