| Verifies that the PresentationModel rejects attempts to get an adapting
ValueModel by means of #getModel with different
property accessor names. In other words, for each bean property
API users must use either
PresentationModel.getModel(String) or
PresentationModel.getModel(StringStringString) , not both.
And all calls to the latter method must use the same getter and setter
names for the same property name.
This test invokes both methods for the same property name with different
getter and/or setter names and expects that the second call is rejected.
The PresentationModel is created without a bean set, to avoid that the
underlying BeanAdapter checks for a valid property.
|