-
-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy pathLanguageDetectionTest.php
43 lines (33 loc) · 1.81 KB
/
LanguageDetectionTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
namespace Stichoza\GoogleTranslate\Tests;
use PHPUnit\Framework\TestCase;
use Stichoza\GoogleTranslate\GoogleTranslate;
class LanguageDetectionTest extends TestCase
{
public GoogleTranslate $tr;
public function setUp(): void
{
$this->tr = new GoogleTranslate();
}
public function testSingleWord(): void
{
$this->tr->translate('გამარჯობა');
$this->assertEquals($this->tr->getLastDetectedSource(), 'ka', 'Language detection should work for single words');
$this->tr->translate('Cześć');
$this->assertEquals($this->tr->getLastDetectedSource(), 'pl', 'Language detection should work for single words');
}
public function testSingleSentence(): void
{
$this->tr->translate('იყო არაბეთს როსტევან');
$this->assertEquals($this->tr->getLastDetectedSource(), 'ka', 'Language detection should work for sentences');
$this->tr->translate('Путин хуйло');
$this->assertEquals($this->tr->getLastDetectedSource(), 'ru', 'Language detection should work for multiple sentences');
}
public function testMultipleSentence(): void
{
$this->tr->translate('ჩემი ხატია სამშობლო. სახატე - მთელი ქვეყანა. განათებული მთა-ბარი.');
$this->assertEquals($this->tr->getLastDetectedSource(), 'ka', 'Language detection should work for multiple sentences');
$this->tr->translate('Ще не вмерла Україна, И слава, и воля! Ще намъ, браття-молодці, Усміхнеться доля!');
$this->assertEquals($this->tr->getLastDetectedSource(), 'uk', 'Language detection should work for multiple sentences');
}
}