-
-
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.
Removed holiday provider with the unit tests, replaced with just a single random year test for the other holidays. Formatted unit test method so that each parameters is on a separate line for readability. Signed-off-by: Sacha Telgenhof <me@sachatelgenhof.com>
- Loading branch information
1 parent
5e84d12
commit c0b7526
Showing
6 changed files
with
87 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<?php | ||
|
||
declare(strict_types = 1); | ||
|
||
/** | ||
* This file is part of the 'Yasumi' package. | ||
* | ||
* The easy PHP Library for calculating holidays. | ||
* | ||
* Copyright (c) 2015 - 2024 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\Bulgaria; | ||
|
||
use Yasumi\Holiday; | ||
use Yasumi\tests\HolidayTestCase; | ||
|
||
class InternationalWorkersDayTest extends BulgariaBaseTestCase implements HolidayTestCase | ||
{ | ||
public const HOLIDAY = 'internationalWorkersDay'; | ||
|
||
public function testHoliday(): void | ||
{ | ||
$year = $this->generateRandomYear(); | ||
$this->assertHoliday( | ||
self::REGION, | ||
self::HOLIDAY, | ||
$year, | ||
new \DateTime("{$year}-05-01", new \DateTimeZone(self::TIMEZONE)) | ||
); | ||
} | ||
|
||
public function testTranslation(): void | ||
{ | ||
$this->assertTranslatedHolidayName( | ||
self::REGION, | ||
self::HOLIDAY, | ||
$this->generateRandomYear(), | ||
[self::LOCALE => 'Ден на труда и на международната работническа солидарност'] | ||
); | ||
} | ||
|
||
public function testHolidayType(): void | ||
{ | ||
$this->assertHolidayType( | ||
self::REGION, | ||
self::HOLIDAY, | ||
$this->generateRandomYear(), | ||
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
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