/// <summary>
        /// Test methods exposed by the EntityHelper class.
        /// </summary>
        private void Step_20_TestEntityHelper_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                mock = CreateMockInstance(tm);

                ErrorLog entity = mock.Copy() as ErrorLog;
                entity = (ErrorLog)mock.Clone();
                Assert.IsTrue(ErrorLog.ValueEquals(entity, mock), "Clone is not working");
            }
        }