public function setPropertyBehavior_sets_expectation_to_prop_behavior()
 {
     $expectation = new Expectation('setFoo');
     $sut = new MethodOptions($expectation, 'setFoo');
     $sut->propertyBehavior();
     $this->assertTrue($expectation->isInPropertyBehavior());
 }