public static Group CreateNew(int depth = 0) { rt.core.model.core.Group entity = new rt.core.model.core.Group(); // You may need to maually enter this key if there is a constraint violation. entity.Id = System.Guid.NewGuid(); entity.Name = "Test Test Test"; return(entity); }
public void Create() { try { rt.core.model.core.Group entity = CreateNew(); object result = manager.Save(entity); Assert.IsNotNull(result); } catch (Exception ex) { Assert.Fail(ex.ToString()); } }
public void Read() { try { rt.core.model.core.Group entityA = CreateNew(); manager.Save(entityA); rt.core.model.core.Group entityB = manager.GetById(entityA.Id); Assert.AreEqual(entityA, entityB); } catch (Exception ex) { Assert.Fail(ex.ToString()); } }
public void Delete() { try { rt.core.model.core.Group entityC = CreateNew(); manager.Save(entityC); manager.Session.GetISession().Flush(); manager.Session.GetISession().Clear(); rt.core.model.core.Group entity = GetFirstGroup(); manager.Delete(entity); entity = manager.GetById(entity.Id); Assert.IsNull(entity); } catch (Exception ex) { Assert.Fail(ex.ToString()); } }
public void Update() { try { rt.core.model.core.Group entityC = CreateNew(); manager.Save(entityC); manager.Session.GetISession().Flush(); manager.Session.GetISession().Clear(); rt.core.model.core.Group entityA = GetFirstGroup(); entityA.Name = "Test Test Test Test Test"; manager.Update(entityA); rt.core.model.core.Group entityB = manager.GetById(entityA.Id); Assert.AreEqual(entityA.Name, entityB.Name); } catch (Exception ex) { Assert.Fail(ex.ToString()); } }