@Test(expected = DisabledException.class)
public void shouldNotBeAbleToModifyProperty() {
// given
final DisabledFacet disabledFacet = new DisabledFacetAlwaysEverywhere(mockPasswordMember);
facets = Arrays.asList((Facet)disabledFacet, new PropertySetterFacetViaSetterMethod(setPasswordMethod, mockPasswordMember));
final Consent visibilityConsent = new Allow(new InteractionResult(new PropertyVisibilityEvent(employeeDO, null)));
final InteractionResult usabilityInteractionResult = new InteractionResult(new PropertyUsabilityEvent(employeeDO, null));
usabilityInteractionResult.advise("disabled", disabledFacet);