| 1 | <?php |
||
| 13 | class DateTimeFormatterTest extends \PHPUnit_Framework_TestCase |
||
| 14 | { |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var DateTimeFormatter |
||
| 18 | */ |
||
| 19 | protected $formatter; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * SetUp |
||
| 23 | */ |
||
| 24 | public function setUp() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param $value |
||
| 31 | * @param $expected |
||
| 32 | * |
||
| 33 | * @dataProvider filterValuesProvider |
||
| 34 | */ |
||
| 35 | public function testDateTimeFormatterFilter($value, $expected) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return array |
||
| 43 | */ |
||
| 44 | public function filterValuesProvider() |
||
| 55 | } |
||
| 56 |