public IEnumerator FoodIsActivated()
        {
            food.SetActive(false);
            goManager.ActivateFood();
            yield return(new WaitForSeconds(WAIT_TIME));

            Assert.True(food.activeSelf);
        }