| 1 | <?php |
||
| 11 | class StrTest extends AbstractTest |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @param $data |
||
| 15 | * @param $start |
||
| 16 | * @param $end |
||
| 17 | * @param $masked |
||
| 18 | * @dataProvider dataMask() |
||
| 19 | */ |
||
| 20 | public function testMask($data, $start, $end, $masked) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return array |
||
| 27 | */ |
||
| 28 | public function dataMask() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param $name |
||
| 40 | * @param $initials |
||
| 41 | * @dataProvider dataInitials() |
||
| 42 | */ |
||
| 43 | public function testInitials($name, $initials) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return array |
||
| 50 | */ |
||
| 51 | public function dataInitials() |
||
| 59 | } |
||
| 60 |