/**
  * 
  *
  * @return string 
  * @static 
  */
 public static function getTranslateTo()
 {
     return \Yandex\Dictionary\DictionaryClient::getTranslateTo();
 }
 /**
  * @param $language
  * @param $expectedLanguage
  *
  * @dataProvider dataSetGetLanguage
  */
 public function testSetGetTranslateTo($language, $expectedLanguage)
 {
     $dictionaryClient = new DictionaryClient('');
     $dictionaryClient->setTranslateTo($language);
     $this->assertEquals($expectedLanguage, $dictionaryClient->getTranslateTo());
 }