8889841cNumberToTripletsConverterTest.php000064400000001406150443513640013275 0ustar00convertToTriplets($number); self::assertEquals($expectedArray, $triplets); } public function providerItConvertsNumberToTriplets() { return [ [123, [123]], [1234, [1, 234]], [22333, [22, 333]], [1222333, [1, 222, 333]], [111222333444, [111, 222, 333, 444]], ]; } }