public function testGetAttributesReturnsTheAttributes()
 {
     $serializer = new PostSerializer1();
     $post = (object) ['foo' => 'bar'];
     $this->assertEquals(['foo' => 'bar'], $serializer->getAttributes($post));
 }