public IEnumerator PowerupsAreActivated()
        {
            powerup.SetActive(false);
            goManager.ActivatePowerups();
            yield return(new WaitForSeconds(WAIT_TIME));

            Assert.True(powerup.activeSelf);
        }