Exemplo n.º 1
0
        public void AddWarehouseWcf()
        {
            var prod = new Product
            {
                Id          = 1,
                Category    = "category",
                Description = "ddeskr",
                Name        = "banan",
                Price       = 10
            };
            var shop = new Shop
            {
                Name        = "ShopName",
                Address     = "new addr",
                OpeningTime = "Manday Never",
                Chain       = new Chain(),
                Cvr         = "12121212",
                Warehouses  = new List <Warehouse>()
            };

            using (var proxy = new BestilNemtServiceRef.BestilNemtServiceClient())
            {
                proxy.Open();
                var chain = proxy.GetChain(1);
                shop.Chain = chain;
                var shopId = proxy.AddShop(shop);
                shop.Id = shopId;
                var warehouse = new Warehouse(10, 5, prod, shop, 1);
                var id        = proxy.AddWarehouse(warehouse);
                proxy.DeleteWarehouse(id);
                Assert.AreNotEqual(0, id);
            }
        }
Exemplo n.º 2
0
 public void GetChainWcfByIdFail()
 {
     using (var proxy = new BestilNemtServiceRef.BestilNemtServiceClient())
     {
         proxy.Open();
         Assert.IsNull(proxy.GetChain(150));
     }
 }