//[TestMethod] public void GetProductsTest() { var target = new N11Service(); target.GetProducts(); Assert.IsTrue(true); }
//[TestMethod] public void GetCategoriesTest() { var target = new N11Service(); target.GetCategories(); Assert.IsTrue(true); }
//[TestMethod] public void CallPostTest() { var target = new N11Service(); //target.CallPost(); Assert.IsTrue(true); }
//[TestMethod] public void CreateProductTest() { var target = new N11Service(); //target.GetShipmentTemplates(); var prod = new ProductModel { stockCode = "91.000015", title = "TIMBERLAND 18617 KADIN AYAKKABI", label = "TIMBERLAND 18617 KADIN AYAKKABI", details = "TIMBERLAND 18617 KADIN AYAKKABI<br />", displayPrice = 209, picture1Path = "http://www.elektrostil.com/modules/catalog/products/pr_01_3448119_max.jpg?rev=1382934834", stockAmount = 23 }; target.CreateProduct(prod, 1520, null); Assert.IsTrue(true); }
public void UpdateProductsTest() { if (String.IsNullOrWhiteSpace(" ")) { return; } var target = new N11Service(); target.UpdateProducts(); Assert.IsTrue(true); }
private void Form1_Load(object sender, EventArgs e) { service = new N11Service(); rowAttributeTable = new Dictionary<string, List<KeyValuePair<string, string>>>(); }