* 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 testCreateMmutableFromMutableReturnsEqualObject() {
MutableInhibitor originalMutableMDO = getMutableInhibitor();
MutableInhibitor createdMutableMDO =
originalMutableMDO.createMutable();
assertEquals("The original mutable object and the created muatable object " +
"should be equal", originalMutableMDO, createdMutableMDO);
}