Example #1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test public void testQueryByInvalidDeleted()
        public virtual void testQueryByInvalidDeleted()
        {
            HistoricIncidentQuery query = historyService.createHistoricIncidentQuery();

            try
            {
                query.deleted().deleted();
                fail("It was possible to set a the deleted flag twice.");
            }
            catch (ProcessEngineException)
            {
            }
        }