Пример #1
0
        public async Task CreateLogBookAsyncShould_SuceedWhenAddingLogBook()
        {
            var options = new DbContextOptionsBuilder()
                          .UseInMemoryDatabase(databaseName: "CreateLogBookAsyncShould_SuceedWhenAddingLogBook")
                          .Options;

            using (var actAndAssertContext =
                       new ApplicationDbContext(TestUtils.GetOptions(nameof(CreateLogBookAsyncShould_SuceedWhenAddingLogBook))))
            {
                EntityService sut = new EntityService(actAndAssertContext);
                await sut.CreateLogBookAsync("Logbook", 1);

                //If no exception is thrown the test has passed.
            }
        }