Ejemplo n.º 1
0
        public async Task CategoryIncomeGet_TryingGetObjectFromDB_ShouldReturnOneObjectInCategoryIncomes()
        {
            // Act
            var getCategoryIncome = await queryDBInMemory.GetAsync(1);

            // Assert
            Assert.AreEqual(1, getCategoryIncome.Id, "GetAsync doesn't return object from Database");
        }