-
-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add International Womens Day to DE-MV (#311)
For the German state of Mecklenburg-Western Pomerania, International Womens Day is considered to be officially observed.
- Loading branch information
Showing
4 changed files
with
117 additions
and
1 deletion.
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
103 changes: 103 additions & 0 deletions
103
tests/Germany/MecklenburgWesternPomerania/InternationalWomensDayTest.php
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,103 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
/* | ||
* This file is part of the Yasumi package. | ||
* | ||
* Copyright (c) 2015 - 2023 AzuyaLabs | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Sacha Telgenhof <me at sachatelgenhof dot com> | ||
*/ | ||
|
||
namespace Yasumi\tests\Germany\MecklenburgWesternPomerania; | ||
|
||
use Yasumi\Holiday; | ||
use Yasumi\tests\HolidayTestCase; | ||
|
||
/** | ||
* Class containing tests for International Womens Day in Mecklenburg–Western Pomerania, Germany. | ||
*/ | ||
class InternationalWomensDayTest extends MecklenburgWesternPomeraniaBaseTestCase implements HolidayTestCase | ||
{ | ||
/** | ||
* The name of the holiday to be tested. | ||
*/ | ||
public const HOLIDAY = 'internationalWomensDay'; | ||
|
||
/** | ||
* The year in which the holiday was established. | ||
*/ | ||
public const ESTABLISHMENT_YEAR = 2023; | ||
|
||
/** | ||
* Test the holiday defined in this test upon establishment. | ||
* | ||
* @throws \Exception | ||
*/ | ||
public function testHolidayOnEstablishment(): void | ||
{ | ||
$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 \Exception | ||
*/ | ||
public function testHolidayBeforeEstablishment(): void | ||
{ | ||
$this->assertNotHoliday( | ||
self::REGION, | ||
self::HOLIDAY, | ||
$this->generateRandomYear(1000, self::ESTABLISHMENT_YEAR - 1) | ||
); | ||
} | ||
|
||
/** | ||
* Test the holiday defined in this test after completion. | ||
* | ||
* @throws \Exception | ||
*/ | ||
public function testHolidayAfterCompletion(): void | ||
{ | ||
$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 \Exception | ||
*/ | ||
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 \Exception | ||
*/ | ||
public function testHolidayType(): void | ||
{ | ||
$this->assertHolidayType( | ||
self::REGION, | ||
self::HOLIDAY, | ||
$this->generateRandomYear(self::ESTABLISHMENT_YEAR, self::ESTABLISHMENT_YEAR), | ||
Holiday::TYPE_OFFICIAL | ||
); | ||
} | ||
} |
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