class TranslationRequestManagerTested in TMGMT Translator Smartling 8.4
Test subclass class of TranslationRequestManager.
Increased access level for createNewTranslationRequest and updateExistingTranslationRequest methods.
Hierarchy
- class \Drupal\tmgmt_smartling\Smartling\Submission\TranslationRequestManager
- class \Drupal\Tests\tmgmt_smartling\Kernel\TranslationRequestManagerTested
Expanded class hierarchy of TranslationRequestManagerTested
File
- tests/
src/ Kernel/ TranslationRequestManagerTest.php, line 828
Namespace
Drupal\Tests\tmgmt_smartling\KernelView source
class TranslationRequestManagerTested extends TranslationRequestManager {
public function createNewTranslationRequest(JobInterface $job) {
return parent::createNewTranslationRequest($job);
}
public function updateExistingTranslationRequest(JobInterface $job, array $translation_request) {
return parent::updateExistingTranslationRequest($job, $translation_request);
}
}