Example #1
0
 //[TestMethod]
 public void TestProcessDefinitionManagerFindNull()
 {
     using (BpmDbContext ctx = new BpmDbContext())
     {
         using (ProcessDefinitionStore store = new ProcessDefinitionStore(ctx))
         {
             store.FindById(null);
         }
     }
 }
        public void TestProcessDefinitionStore1()
        {
            ProcessDefinitionStore store = new ProcessDefinitionStore(new BpmDbContext());

            store.Dispose();
            try
            {
                store.FindById("1");
            }
            catch (System.Exception)
            {
            }
        }