public void WhenCreatingABeingWithAbilityIDS_ThenTheBeingHaveAbilities()
        {
            //Assign

            //Act
            being.addAbility(0, true);
            being.addAbility(1, true);

            // Assert
            Assert.AreEqual(2, being.abilities.Count);
        }