Beispiel #1
0
        public void CaseActionsGetAllLegalActionsTest()
        {
            var optionBuilder = new DbContextOptionsBuilder <ApplicationDbContext>()
                                .UseInMemoryDatabase("testDb4");
            var dbContext = new ApplicationDbContext(optionBuilder.Options);

            var service = new CaseActionsService(dbContext);

            var result = service.GetAllLegalActions();

            Assert.NotNull(result);
        }