-
-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9fbfd6f
commit f756448
Showing
7 changed files
with
176 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
/** | ||
* This file is part of the Yasumi package. | ||
* | ||
* Copyright (c) 2015 - 2019 AzuyaLabs | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Sacha Telgenhof <[email protected]> | ||
*/ | ||
|
||
// Translations for International Women's Day | ||
return [ | ||
'de_DE' => 'Internationaler Frauentag', | ||
'en_US' => 'International Women\'s Day', | ||
'ru_RU' => 'Международный женский день', | ||
'uk_UA' => 'Міжнародний жіночий день', | ||
'ru_UA' => 'Международный женский день', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
<?php | ||
/** | ||
* This file is part of the Yasumi package. | ||
* | ||
* Copyright (c) 2015 - 2019 AzuyaLabs | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Sacha Telgenhof <[email protected]> | ||
*/ | ||
|
||
namespace Yasumi\tests\Germany\Berlin; | ||
|
||
use DateTime; | ||
use DateTimeZone; | ||
use Yasumi\Holiday; | ||
use Yasumi\tests\YasumiTestCaseInterface; | ||
|
||
/** | ||
* Class containing tests for Reformation Day in Germany. | ||
*/ | ||
class InternationalWomensDay2019Test extends BerlinBaseTestCase implements YasumiTestCaseInterface | ||
{ | ||
/** | ||
* The name of the holiday to be tested | ||
*/ | ||
public const HOLIDAY = 'internationalWomensDay'; | ||
|
||
/** | ||
* The year in which the holiday was established | ||
*/ | ||
public const ESTABLISHMENT_YEAR = 2019; | ||
|
||
/** | ||
* Test the holiday defined in this test upon establishment | ||
* @throws \Exception | ||
* @throws \ReflectionException | ||
*/ | ||
public function testHolidayOnEstablishment() | ||
{ | ||
$this->assertHoliday( | ||
self::REGION, | ||
self::HOLIDAY, | ||
self::ESTABLISHMENT_YEAR, | ||
new DateTime(self::ESTABLISHMENT_YEAR . '-03-08', new DateTimeZone(self::TIMEZONE)) | ||
); | ||
} | ||
|
||
/** | ||
* Test the holiday defined in this test before establishment | ||
* @throws \ReflectionException | ||
*/ | ||
public function testHolidayBeforeEstablishment() | ||
{ | ||
$this->assertNotHoliday( | ||
self::REGION, | ||
self::HOLIDAY, | ||
$this->generateRandomYear(1000, self::ESTABLISHMENT_YEAR - 1) | ||
); | ||
} | ||
|
||
/** | ||
* Test the holiday defined in this test after completion | ||
* @throws \ReflectionException | ||
*/ | ||
public function testHolidayAfterCompletion() | ||
{ | ||
$this->assertNotHoliday(self::REGION, self::HOLIDAY, $this->generateRandomYear(1900, self::ESTABLISHMENT_YEAR - 1)); | ||
} | ||
|
||
/** | ||
* Tests the translated name of the holiday defined in this test. | ||
* @throws \ReflectionException | ||
*/ | ||
public function testTranslation(): void | ||
{ | ||
$this->assertTranslatedHolidayName( | ||
self::REGION, | ||
self::HOLIDAY, | ||
$this->generateRandomYear(self::ESTABLISHMENT_YEAR, self::ESTABLISHMENT_YEAR), | ||
[self::LOCALE => 'Internationaler Frauentag'] | ||
); | ||
} | ||
|
||
/** | ||
* Tests type of the holiday defined in this test. | ||
* @throws \ReflectionException | ||
*/ | ||
public function testHolidayType(): void | ||
{ | ||
$this->assertHolidayType( | ||
self::REGION, | ||
self::HOLIDAY, | ||
$this->generateRandomYear(self::ESTABLISHMENT_YEAR, self::ESTABLISHMENT_YEAR), | ||
Holiday::TYPE_OFFICIAL | ||
); | ||
} | ||
} |