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

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