using Centron.BusinessLogic.WebServices.Warehousing; using Centron.Tests.EndToEnd.Infrastructure; using Xunit.Abstractions; namespace Centron.Tests.EndToEnd.TicketTests.Ticket137957; public class Ticket137957Tests : EndToEndTest { public Ticket137957Tests(ITestOutputHelper testOutputHelper) : base(testOutputHelper) { } public override void Execute() { // In this ticket the problem was, that the price-matrix would show incorrect quantities for the searched article // Incorrect because it included the quantities from the RMA warehouses (they should be excluded) var manufacturerCode = "Q7815A#BAN"; var items = this.WithSession(s => s.GetBL().GetPriceMatrixItems(manufacturerCode, string.Empty)); this.Verifier.Verify("PriceMatrixItems", items); } }