/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
plugins
/
wp-content-crawler
/
app
/
Test
/
Tests
/
Upload File
HOME
<?php /** * Created by PhpStorm. * User: turgutsaricam * Date: 21/02/2019 * Time: 20:44 * * @since 1.9.0 */ namespace WPCCrawler\Test\Tests; use WPCCrawler\Objects\Settings\Enums\SettingKey; use WPCCrawler\Objects\Transformation\Base\AbstractTransformationService; use WPCCrawler\Objects\Transformation\Spinning\SpinningService; use WPCCrawler\Test\Base\AbstractTransformationTest; class SpinningTest extends AbstractTransformationTest { /** * Create the transformation service that will be used to perform the test * * @return AbstractTransformationService * @since 1.9.0 */ protected function createTransformationService(): AbstractTransformationService { return SpinningService::getInstance(); } /** * Get the key using which serialized transformation options can be retrieved from the test data * * @return string * @since 1.9.0 */ protected function getSerializedOptionsDataKey(): string { return 'serializedSpinningOptions'; } /** * Get the option key storing the selected transformation service. * * @return string * @since 1.9.0 */ protected function getSelectedServiceOptionKey(): string { return SettingKey::WPCC_SELECTED_SPINNING_SERVICE; } /** * Create a short message describing the test results. E.g. "Translation results for $apiName" * * @param string $apiName * @return string * @since 1.9.0 */ protected function createTestResultMessage(string $apiName): string { return sprintf(_wpcc('Spinning test results for <b>%1$s</b>'), $apiName) . ':'; } }