/**
  * @test
  */
 public function setAllowedExcludeFieldsSetsAllowedExcludeFields()
 {
     $allowedExcludeFields = 'foo,bar';
     $this->subject->setAllowedExcludeFields($allowedExcludeFields);
     $this->assertSame($allowedExcludeFields, $this->subject->getAllowedExcludeFields());
 }