/// <summary> /// Test methods exposed by the EntityHelper class. /// </summary> private void Step_20_TestEntityHelper_Generated() { using (TransactionManager tm = CreateTransaction()) { mock = CreateMockInstance(tm); ContactType entity = mock.Copy() as ContactType; entity = (ContactType)mock.Clone(); Assert.IsTrue(ContactType.ValueEquals(entity, mock), "Clone is not working"); } }