/**
  * @test
  */
 public function checkMetadata()
 {
     $this->assertEquals(['boolean', 'string', 'integer', 'float'], $this->converter->getSupportedSourceTypes(), 'Source types do not match');
     $this->assertEquals('boolean', $this->converter->getSupportedTargetType(), 'Target type does not match');
     $this->assertEquals(1, $this->converter->getPriority(), 'Priority does not match');
 }