using System.Collections.Generic; using Centron.BusinessLogic; using Centron.BusinessLogic.Warehousing; using Centron.BusinessLogic.WebServices.Warehousing; using Centron.Tests.EndToEnd.Infrastructure; using Xunit.Abstractions; namespace Centron.Tests.EndToEnd.TicketTests.Ticket126417; public class Ticket126417Tests : EndToEndTest { public Ticket126417Tests(ITestOutputHelper testOutputHelper) : base(testOutputHelper) { } public override void Execute() { using var session = new BLSession(); var filter = new BarcodeFilter(); var barcodes = session.GetBL().GetBarcodesThroughPaging(filter, 1, int.MaxValue); this.Verifier.Verify("Complete_cvw_BarcodeDetails", barcodes); } }