Ejemplo n.º 1
0
        public async Task AddSellItemTestAsync()
        {
            string expectedResult = "Item Updated";
            string result         = String.Empty;
            string folio_Venta    = "b9ebd1a6-12a4-4834-8172-f26466bc60d9";
            string sku            = "7506105606053";

            Sell sell = new Sell(_sellRepository, _statusSellRepository, _productRepository);


            result = await sell.AddSellItemAsync(folio_Venta, sku, Guid.NewGuid().ToString());

            Assert.AreEqual(expectedResult, result);
        }