/**
  * Tests the normalize() method.
  */
 public function testNormalize()
 {
     $this->typedData->expects($this->once())->method('getValue')->will($this->returnValue('test'));
     $this->assertEquals('test', $this->normalizer->normalize($this->typedData));
 }