* is achieved by using the equals() method. There is a separate test
* {@link #testEqualsAndHashcodeImplementedCorrectly} which ensures that the equals
* method returns valid results.</p>
*/
public void testCreateMutableFromImmutableReturnsEqualObject() {
ImmutableInhibitor immutableMDO = getImmutableInhibitor();
MutableInhibitor mutableMDO = immutableMDO.
createMutable();
assertEquals("The original immutable object and the created muatable object " +
"should be equal", immutableMDO, mutableMDO);
}