1 | <?php |
||
20 | class ConverterTest extends TestCase |
||
21 | { |
||
22 | public function flagDataProvider() |
||
26 | |||
27 | /** |
||
28 | * @dataProvider flagDataProvider |
||
29 | * @param $time |
||
30 | * @param $year |
||
31 | * @param $month |
||
32 | * @param $day |
||
33 | */ |
||
34 | public function testBengaliDateMonthYear($time, $year, $month, $day) |
||
44 | |||
45 | public function testCustomMorningTest() |
||
51 | |||
52 | /** |
||
53 | * @dataProvider flagDataProvider |
||
54 | * @param $time |
||
55 | * @param $year |
||
56 | * @param $month |
||
57 | * @param $day |
||
58 | */ |
||
59 | public function testEnglishTimeFromBanglaDate($time, $year, $month, $day) |
||
67 | |||
68 | /** |
||
69 | * @param $object |
||
70 | * @param $morning |
||
71 | * @param $expected |
||
72 | */ |
||
73 | private function assertDateConversion($object, $morning, $expected) |
||
78 | } |
||
79 |