public static Permission CreateNew(int depth = 0) { rt.core.model.core.Permission entity = new rt.core.model.core.Permission(); // You may need to maually enter this key if there is a constraint violation. entity.Id = System.Guid.NewGuid(); entity.Name = "Test Test "; entity.Code = 73; return(entity); }
public void Create() { try { rt.core.model.core.Permission 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.Permission entityA = CreateNew(); manager.Save(entityA); rt.core.model.core.Permission entityB = manager.GetById(entityA.Id); Assert.AreEqual(entityA, entityB); } catch (Exception ex) { Assert.Fail(ex.ToString()); } }
public void Delete() { try { rt.core.model.core.Permission entityC = CreateNew(); manager.Save(entityC); manager.Session.GetISession().Flush(); manager.Session.GetISession().Clear(); rt.core.model.core.Permission entity = GetFirstPermission(); 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.Permission entityC = CreateNew(); manager.Save(entityC); manager.Session.GetISession().Flush(); manager.Session.GetISession().Clear(); rt.core.model.core.Permission entityA = GetFirstPermission(); entityA.Name = "Test Test "; manager.Update(entityA); rt.core.model.core.Permission entityB = manager.GetById(entityA.Id); Assert.AreEqual(entityA.Name, entityB.Name); } catch (Exception ex) { Assert.Fail(ex.ToString()); } }