Namespace: DeltaEngine.Entities
Assembly: DeltaEngine (in DeltaEngine.dll) Version: 1.1.1.0 (1.1.1)
Tests: DeltaEngine.Tests.Entities.EntityTests
2 unit tests call DeltaEngine.Entities.Entity.RemoveTag(System.String)
Assembly: DeltaEngine (in DeltaEngine.dll) Version: 1.1.1.0 (1.1.1)
Syntax
Parameters
- tag
- Type: System String
Remarks
Examples
[Test] public void ToStringWithTags() { entityWithTags.ClearTags(); Assert.AreEqual("MockEntity", entityWithTags.ToString()); entityWithTags.AddTag("Empty"); entityWithTags.AddTag("Empty"); entityWithTags.AddTag("Entity"); Assert.AreEqual("MockEntity Tags=Empty, Entity", entityWithTags.ToString()); entityWithTags.RemoveTag("Entity"); Assert.AreEqual("MockEntity Tags=Empty", entityWithTags.ToString()); entityWithTags.ClearTags(); Assert.AreEqual("MockEntity", entityWithTags.ToString()); }
[Test] public void RemoveTag() { entityWithTags.RemoveTag(Tag1); Assert.IsFalse(entityWithTags.ContainsTag(Tag1)); Assert.IsTrue(entityWithTags.ContainsTag(Tag2)); Assert.AreEqual(0, entities.GetEntitiesWithTag(Tag1).Count); }
See Also