It's a bug present in 1.1 version and should be fixed in version 1.2, so, this class can be deleted after upgrade our dependency of 1.1 version of MongoDB driver
See also: https://jira.mongodb.org/browse/PHPC-460
 public function testUnconvertShouldConvertObjectsToMongoTypes()
 {
     $converter = m::mock(Converter::class);
     $serializer = new Serializer($converter);
     $attributes = ['awsome', 'attrs'];
     $replaced = ['some', 'attributes'];
     $converter->shouldReceive('toMongoTypes')->with($attributes)->once()->andReturn($replaced);
     $this->assertEquals($replaced, $serializer->unconvert($attributes));
 }