for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Holiday Library.
*
* (c) Michał Mańko <[email protected]>
* For the full copyright and license information, please view the LICENSE.md
* file that was distributed with this source code.
*/
namespace Michalmanko\Holiday\Test\Provider;
/**
* @author ottowayne <[email protected]>
class GermanySTTest extends GermanyTest
{
public function getProviderCountryCode()
return 'GER_ST';
}
public function getProviderCountryName()
return 'GermanyST';
public function getProviderInstanceOf()
return '\\Michalmanko\\Holiday\\Provider\\GermanyST';
public function dataProvider()
$parentData = parent::dataProvider();
$providerData = array(
$this->getEpiphanyTestData(),
$this->getReformationTestData(),
);
return array_merge($parentData, $providerData);