public static string ToFriendlyString(this FrmType fType) { string r = ""; switch (fType) { case FrmType.Modify: r = "수정 페이지"; break; case FrmType.Reply: r = "답변 페이지"; break; case FrmType.Delete: r = "삭제 페이지"; break; default: r = "등록 페이지"; break; } return(r); }
public static string ToFriendlyString(this FrmType fType) { string r = ""; switch (fType) { case FrmType.Write: r = "글 쓰기 페이지"; break; case FrmType.Modify: r = "글 수정 페이지"; break; case FrmType.Reply: r = "글 답변 페이지"; break; default: r = "글 쓰기 페이지"; break; } return(r); }
/// <summary> /// Deep load all FrmType children. /// </summary> private void Step_03_DeepLoad_Generated() { using (TransactionManager tm = CreateTransaction()) { int count = -1; mock = CreateMockInstance(tm); mockCollection = DataRepository.FrmTypeProvider.GetPaged(tm, 0, 10, out count); DataRepository.FrmTypeProvider.DeepLoading += new EntityProviderBaseCore <FrmType, FrmTypeKey> .DeepLoadingEventHandler( delegate(object sender, DeepSessionEventArgs e) { if (e.DeepSession.Count > 3) { e.Cancel = true; } } ); if (mockCollection.Count > 0) { DataRepository.FrmTypeProvider.DeepLoad(tm, mockCollection[0]); System.Console.WriteLine("FrmType instance correctly deep loaded at 1 level."); mockCollection.Add(mock); // DataRepository.FrmTypeProvider.DeepSave(tm, mockCollection); } //normally one would commit here //tm.Commit(); //IDisposable will Rollback Transaction since it's left uncommitted } }
///<summary> /// Update the Typed FrmType Entity with modified mock values. ///</summary> static public void UpdateMockInstance(TransactionManager tm, FrmType mock) { FrmTypeTest.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()) { FrmType entity = CreateMockInstance(tm); bool result = DataRepository.FrmTypeProvider.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); FrmType entity = mock.Copy() as FrmType; entity = (FrmType)mock.Clone(); Assert.IsTrue(FrmType.ValueEquals(entity, mock), "Clone is not working"); } }
///<summary> /// Returns a Typed FrmType Entity with mock values. ///</summary> static public FrmType CreateMockInstance(TransactionManager tm) { // get the default mock instance FrmType mock = FrmTypeTest.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 FrmType 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_FrmType.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 FrmType entity into the database. /// </summary> private void Step_01_Insert_Generated() { using (TransactionManager tm = CreateTransaction()) { mock = CreateMockInstance(tm); Assert.IsTrue(DataRepository.FrmTypeProvider.Insert(tm, mock), "Insert failed"); System.Console.WriteLine("DataRepository.FrmTypeProvider.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 FrmType 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_FrmTypeCollection.xml"); mock = CreateMockInstance(tm); TList <FrmType> mockCollection = new TList <FrmType>(); mockCollection.Add(mock); EntityHelper.SerializeXml(mockCollection, fileName); Assert.IsTrue(System.IO.File.Exists(fileName), "Serialized mock collection not found"); System.Console.WriteLine("TList<FrmType> correctly serialized to a temporary file."); } }
///<summary> /// Returns a Typed FrmType Entity with mock values. ///</summary> static public FrmType CreateMockInstance_Generated(TransactionManager tm) { FrmType mock = new FrmType(); mock.Id = (decimal)TestUtility.Instance.RandomShort(); mock.Description = TestUtility.Instance.RandomString(49, false);; mock.Status = TestUtility.Instance.RandomBoolean(); // create a temporary collection and add the item to it TList <FrmType> tempMockCollection = new TList <FrmType>(); tempMockCollection.Add(mock); tempMockCollection.Remove(mock); return((FrmType)mock); }
/// <summary> /// Test Find using the Query class /// </summary> private void Step_30_TestFindByQuery_Generated() { using (TransactionManager tm = CreateTransaction()) { //Insert Mock Instance FrmType mock = CreateMockInstance(tm); bool result = DataRepository.FrmTypeProvider.Insert(tm, mock); Assert.IsTrue(result, "Could Not Test FindByQuery, Insert Failed"); FrmTypeQuery query = new FrmTypeQuery(); query.AppendEquals(FrmTypeColumn.Id, mock.Id.ToString()); query.AppendEquals(FrmTypeColumn.Description, mock.Description.ToString()); query.AppendEquals(FrmTypeColumn.Status, mock.Status.ToString()); TList <FrmType> results = DataRepository.FrmTypeProvider.Find(tm, query); Assert.IsTrue(results.Count == 1, "Find is not working correctly. Failed to find the mock instance"); } }
/// <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(FrmType mock) { //Code your changes to the data object here. }
///<summary> /// Update the Typed FrmType Entity with modified mock values. ///</summary> static public void UpdateMockInstance_Generated(TransactionManager tm, FrmType mock) { mock.Description = TestUtility.Instance.RandomString(49, false);; mock.Status = TestUtility.Instance.RandomBoolean(); }