public IEnumerator GoldPlayerUpdateGeneratesGarbage()
        {
            GoldPlayerController player = SetupPlayer();

            yield return(null);

            Assert.That(() =>
            {
#if HERTZLIB_UPDATE_MANAGER
                player.OnUpdate();
#else
                player.Update();
#endif
            }, Is.Not.AllocatingGCMemory());
        }