コード例 #1
0
        public async Task CategoryIncomeGetAll_TryingGetAllObjectsFromDB_ShouldReturnSixObjectsInCategoryIncomes()
        {
            // Act
            var allCategoryIncomes = await queryDBInMemory.GetAllAsync();

            // Assert
            Assert.AreEqual(6, allCategoryIncomes.Count(), "GetAllAsync doesn't return objects from Database");
        }