public function testSetFilterStringExplodesStringByCommaAndSetsResultAsFilterProperty()
 {
     $this->operationContext->setFilterString('');
     $this->assertAttributeSame(array(), 'filter', $this->operationContext);
     $this->operationContext->setFilterString('foo,bar');
     $this->assertAttributeSame(array('foo', 'bar'), 'filter', $this->operationContext);
     $this->operationContext->setFilterString('foo,bar,baz');
     $this->assertAttributeSame(array('foo', 'bar', 'baz'), 'filter', $this->operationContext);
 }