public void RegisterWildlife_NoSpeciesInterface_ErrorsAndNotRegistered()
        {
            LogAssert.Expect(LogType.Error, "Tried to add a wildlife entry that lacks a proper species interface!");

            _wildlife.RegisterWildlife(new GameObject());

            Assert.AreEqual(0, _wildlife.GetWildlifeInRadius(Vector3.zero, 1000f).Count);
        }