Since: 2.0
Inheritance: extends Doctrine\DBAL\Types\Type
 /**
  * @test
  * @dataProvider provideSerializedValues
  */
 public function valuesShouldDeserializeProperly($expected, $serialized)
 {
     $deserialized = $this->type->convertToPHPValue($serialized, $this->platform);
     $this->assertSame($expected, $deserialized);
 }