public function testNormalizeNoPropertyInGroup()
 {
     $classMetadataFactory = new ClassMetadataFactory(new AnnotationLoader(new AnnotationReader()));
     $this->normalizer = new ObjectNormalizer($classMetadataFactory);
     $this->normalizer->setSerializer($this->serializer);
     $obj = new GroupDummy();
     $obj->setFoo('foo');
     $this->assertEquals(array(), $this->normalizer->normalize($obj, null, array('groups' => array('notExist'))));
 }
 public function testGroupsDenormalize()
 {
     $classMetadataFactory = new ClassMetadataFactory(new AnnotationLoader(new AnnotationReader()));
     $this->normalizer = new ObjectNormalizer($classMetadataFactory);
     $this->normalizer->setSerializer($this->serializer);
     $obj = new GroupDummy();
     $obj->setFoo('foo');
     $toNormalize = array('foo' => 'foo', 'bar' => 'bar');
     $normalized = $this->normalizer->denormalize($toNormalize, 'Symfony\\Component\\Serializer\\Tests\\Fixtures\\GroupDummy', null, array('groups' => array('a')));
     $this->assertEquals($obj, $normalized);
     $obj->setBar('bar');
     $normalized = $this->normalizer->denormalize($toNormalize, 'Symfony\\Component\\Serializer\\Tests\\Fixtures\\GroupDummy', null, array('groups' => array('a', 'b')));
     $this->assertEquals($obj, $normalized);
 }