aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/LanguagesTest.php
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2016-08-07 11:52:49 +0200
committerArthurHoaro <arthur@hoa.ro>2016-08-07 11:54:39 +0200
commitedf3ff5a53b353ed4a5d9d617bfd06a6c13b3bac (patch)
tree04bdab4db1ef5e8c68ea161e198bf2aef7ae9396 /tests/LanguagesTest.php
parent65b2c795d00f638d6ca08519e1435efd989c8117 (diff)
downloadShaarli-edf3ff5a53b353ed4a5d9d617bfd06a6c13b3bac.tar.gz
Shaarli-edf3ff5a53b353ed4a5d9d617bfd06a6c13b3bac.tar.zst
Shaarli-edf3ff5a53b353ed4a5d9d617bfd06a6c13b3bac.zip
Initialize a translation function
It matches the API of ngettext().
Diffstat (limited to 'tests/LanguagesTest.php')
-rw-r--r--tests/LanguagesTest.php41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/LanguagesTest.php b/tests/LanguagesTest.php
new file mode 100644
index 00000000..79c136c8
--- /dev/null
+++ b/tests/LanguagesTest.php
@@ -0,0 +1,41 @@
1<?php
2
3require_once 'application/Languages.php';
4
5/**
6 * Class LanguagesTest.
7 */
8class LanguagesTest extends PHPUnit_Framework_TestCase
9{
10 /**
11 * Test t() with a simple non identified value.
12 */
13 public function testTranslateSingleNotID()
14 {
15 $text = 'abcdé 564 fgK';
16 $this->assertEquals($text, t($text));
17 }
18
19 /**
20 * Test t() with a non identified plural form.
21 */
22 public function testTranslatePluralNotID()
23 {
24 $text = '%s sandwich';
25 $nText = '%s sandwiches';
26 $this->assertEquals('0 sandwich', t($text, $nText));
27 $this->assertEquals('1 sandwich', t($text, $nText, 1));
28 $this->assertEquals('2 sandwiches', t($text, $nText, 2));
29 }
30
31 /**
32 * Test t() with a non identified invalid plural form.
33 */
34 public function testTranslatePluralNotIDInvalid()
35 {
36 $text = 'sandwich';
37 $nText = 'sandwiches';
38 $this->assertEquals('sandwich', t($text, $nText, 1));
39 $this->assertEquals('sandwiches', t($text, $nText, 2));
40 }
41}