/// <summary>
        /// Deep load all GoodsGrp children.
        /// </summary>
        private void Step_03_DeepLoad_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                int count = -1;
                mock           = CreateMockInstance(tm);
                mockCollection = DataRepository.GoodsGrpProvider.GetPaged(tm, 0, 10, out count);

                DataRepository.GoodsGrpProvider.DeepLoading += new EntityProviderBaseCore <GoodsGrp, GoodsGrpKey> .DeepLoadingEventHandler(
                    delegate(object sender, DeepSessionEventArgs e)
                {
                    if (e.DeepSession.Count > 3)
                    {
                        e.Cancel = true;
                    }
                }
                    );

                if (mockCollection.Count > 0)
                {
                    DataRepository.GoodsGrpProvider.DeepLoad(tm, mockCollection[0]);
                    System.Console.WriteLine("GoodsGrp instance correctly deep loaded at 1 level.");

                    mockCollection.Add(mock);
                    // DataRepository.GoodsGrpProvider.DeepSave(tm, mockCollection);
                }

                //normally one would commit here
                //tm.Commit();
                //IDisposable will Rollback Transaction since it's left uncommitted
            }
        }
Пример #2
0
        ///<summary>
        ///  Update the Typed GoodsGrp Entity with modified mock values.
        ///</summary>
        static public void UpdateMockInstance(TransactionManager tm, GoodsGrp mock)
        {
            GoodsGrpTest.UpdateMockInstance_Generated(tm, mock);

            // make any alterations necessary
            // (i.e. for DB check constraints, special test cases, etc.)
            SetSpecialTestData(mock);
        }
        /// <summary>
        /// Check the foreign key dal methods.
        /// </summary>
        private void Step_10_FK_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                GoodsGrp entity = CreateMockInstance(tm);
                bool     result = DataRepository.GoodsGrpProvider.Insert(tm, entity);

                Assert.IsTrue(result, "Could Not Test FK, Insert Failed");
            }
        }
        /// <summary>
        /// Test methods exposed by the EntityHelper class.
        /// </summary>
        private void Step_20_TestEntityHelper_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                mock = CreateMockInstance(tm);

                GoodsGrp entity = mock.Copy() as GoodsGrp;
                entity = (GoodsGrp)mock.Clone();
                Assert.IsTrue(GoodsGrp.ValueEquals(entity, mock), "Clone is not working");
            }
        }
Пример #5
0
        ///<summary>
        ///  Returns a Typed GoodsGrp Entity with mock values.
        ///</summary>
        static public GoodsGrp CreateMockInstance(TransactionManager tm)
        {
            // get the default mock instance
            GoodsGrp mock = GoodsGrpTest.CreateMockInstance_Generated(tm);

            // make any alterations necessary
            // (i.e. for DB check constraints, special test cases, etc.)
            SetSpecialTestData(mock);

            // return the modified object
            return(mock);
        }
        /// <summary>
        /// Serialize the mock GoodsGrp entity into a temporary file.
        /// </summary>
        private void Step_06_SerializeEntity_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                mock = CreateMockInstance(tm);
                string fileName = System.IO.Path.Combine(System.IO.Path.GetTempPath(), "temp_GoodsGrp.xml");

                EntityHelper.SerializeXml(mock, fileName);
                Assert.IsTrue(System.IO.File.Exists(fileName), "Serialized mock not found");

                System.Console.WriteLine("mock correctly serialized to a temporary file.");
            }
        }
        /// <summary>
        /// Inserts a mock GoodsGrp entity into the database.
        /// </summary>
        private void Step_01_Insert_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                mock = CreateMockInstance(tm);
                Assert.IsTrue(DataRepository.GoodsGrpProvider.Insert(tm, mock), "Insert failed");

                System.Console.WriteLine("DataRepository.GoodsGrpProvider.Insert(mock):");
                System.Console.WriteLine(mock);

                //normally one would commit here
                //tm.Commit();
                //IDisposable will Rollback Transaction since it's left uncommitted
            }
        }
        /// <summary>
        /// Serialize a GoodsGrp collection into a temporary file.
        /// </summary>
        private void Step_08_SerializeCollection_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                string fileName = System.IO.Path.Combine(System.IO.Path.GetTempPath(), "temp_GoodsGrpCollection.xml");

                mock = CreateMockInstance(tm);
                TList <GoodsGrp> mockCollection = new TList <GoodsGrp>();
                mockCollection.Add(mock);

                EntityHelper.SerializeXml(mockCollection, fileName);

                Assert.IsTrue(System.IO.File.Exists(fileName), "Serialized mock collection not found");
                System.Console.WriteLine("TList<GoodsGrp> correctly serialized to a temporary file.");
            }
        }
        ///<summary>
        ///  Returns a Typed GoodsGrp Entity with mock values.
        ///</summary>
        static public GoodsGrp CreateMockInstance_Generated(TransactionManager tm)
        {
            GoodsGrp mock = new GoodsGrp();

            mock.Id          = TestUtility.Instance.RandomString(4, false);;
            mock.Description = TestUtility.Instance.RandomString(49, false);;
            mock.Status      = TestUtility.Instance.RandomBoolean();


            // create a temporary collection and add the item to it
            TList <GoodsGrp> tempMockCollection = new TList <GoodsGrp>();

            tempMockCollection.Add(mock);
            tempMockCollection.Remove(mock);


            return((GoodsGrp)mock);
        }
        /// <summary>
        /// Test Find using the Query class
        /// </summary>
        private void Step_30_TestFindByQuery_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                //Insert Mock Instance
                GoodsGrp mock   = CreateMockInstance(tm);
                bool     result = DataRepository.GoodsGrpProvider.Insert(tm, mock);

                Assert.IsTrue(result, "Could Not Test FindByQuery, Insert Failed");

                GoodsGrpQuery query = new GoodsGrpQuery();

                query.AppendEquals(GoodsGrpColumn.Id, mock.Id.ToString());
                query.AppendEquals(GoodsGrpColumn.Description, mock.Description.ToString());
                query.AppendEquals(GoodsGrpColumn.Status, mock.Status.ToString());

                TList <GoodsGrp> results = DataRepository.GoodsGrpProvider.Find(tm, query);

                Assert.IsTrue(results.Count == 1, "Find is not working correctly.  Failed to find the mock instance");
            }
        }
 ///<summary>
 ///  Update the Typed GoodsGrp Entity with modified mock values.
 ///</summary>
 static public void UpdateMockInstance_Generated(TransactionManager tm, GoodsGrp mock)
 {
     mock.Description = TestUtility.Instance.RandomString(49, false);;
     mock.Status      = TestUtility.Instance.RandomBoolean();
 }
Пример #12
0
 /// <summary>
 /// Make any alterations necessary (i.e. for DB check constraints, special test cases, etc.)
 /// </summary>
 /// <param name="mock">Object to be modified</param>
 static private void SetSpecialTestData(GoodsGrp mock)
 {
     //Code your changes to the data object here.
 }