assertSame( '111', $map->getSerialIdForIndex( 111 ) ); } public function testGetSerialIdForIndexWithOffset() { $map = new PlainNumericSerialMapping( [ 'offset' => 111 ] ); $this->assertSame( '222', $map->getSerialIdForIndex( 111 ) ); } }