BudgetAnalyser.Engine.UnitTest.Services.TransactionManagerServiceTest.PopulateGroupByBucketCollection_ShouldReturnEmpty_GivenFalse C# (CSharp) Метод

PopulateGroupByBucketCollection_ShouldReturnEmpty_GivenFalse() приватный Метод

private PopulateGroupByBucketCollection_ShouldReturnEmpty_GivenFalse ( ) : void
Результат void
        public void PopulateGroupByBucketCollection_ShouldReturnEmpty_GivenFalse()
        {
            IEnumerable<TransactionGroupedByBucket> result = this.subject.PopulateGroupByBucketCollection(false);

            Assert.IsFalse(result.Any());
        }
TransactionManagerServiceTest