public function testSerialize() {
$obj = new ScalarDummy();
$obj->foo = 'foo';
$obj->xmlFoo = 'xml';
$this
->assertEquals('foo', $this->normalizer
->normalize($obj, 'json'));
$this
->assertEquals('xml', $this->normalizer
->normalize($obj, 'xml'));
}