aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/languages/de/UtilsDeTest.php
blob: 8a740389ac19b9edd0acc8f713ddfd53d466bf4d (plain) (blame)
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
<?php

require_once 'tests/UtilsTest.php';


class UtilsDeTest extends UtilsTest
{
    /**
     * Test date_format().
     */
    public function testDateFormat()
    {
        $date = DateTime::createFromFormat('Ymd_His', '20170101_101112');
        $this->assertRegExp('/1. Januar 2017 (um )?10:11:12 GMT\+0?3(:00)?/', format_date($date, true));
    }

    /**
     * Test date_format() using builtin PHP function strftime.
     */
    public function testDateFormatDefault()
    {
        $date = DateTime::createFromFormat('Ymd_His', '20170101_101112');
        $this->assertEquals('So 01 Jan 2017 10:11:12 EAT', format_date($date, false));
    }
}