Braintree.Tests.Integration.SettlementBatchSummaryIntegrationTest.Generate_ReturnsAnEmptyCollectionIfThereIsNoData C# (CSharp) Method

Generate_ReturnsAnEmptyCollectionIfThereIsNoData() private method

private Generate_ReturnsAnEmptyCollectionIfThereIsNoData ( ) : void
return void
        public void Generate_ReturnsAnEmptyCollectionIfThereIsNoData()
        {
            Result<SettlementBatchSummary> result = gateway.SettlementBatchSummary.Generate(DateTime.Parse("1979-01-01"));
            Assert.AreEqual(0, result.Target.Records.Count);
        }