Ejemplo n.º 1
0
 public bool GetGoods(Storage Storage)
 {
     if (Storage.GetGoods() != null)
         return true;
     else
         return false;
 }
Ejemplo n.º 2
0
 public bool MoveGoods(Storage TakeStorage, Storage PlaceStorage)
 {
     Goods myTovar = TakeStorage.GetGoods();
     if (myTovar != null)
     {
         PlaceStorage.AddGoods(myTovar);
         return true;
     }
     else
         return false;
 }
Ejemplo n.º 3
0
        public void GetGoods_GetTheGoods_TheResultingProductIsIndoors() // Получение товара товара
        {
            // Организация
            int myMaxGoods = 10;
            Storage myStorage = new Storage(myMaxGoods, "SkladTest");
            Goods expected = new Goods();

            // Действие
            myStorage.AddGoods(expected);

            // Утверждение
            Goods actual = myStorage.GetGoods();
            Assert.AreEqual(expected, actual, "Товар не получен!");
        }