Namespace: DeltaEngine.Tests.Entities
Assembly: DeltaEngine.Tests (in DeltaEngine.Tests.dll) Version: 1.1.1.0 (1.1.1)
Assembly: DeltaEngine.Tests (in DeltaEngine.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax
Examples
[Test] public void GetAllEntitiesWithCertainTag() { new MockEntity().AddTag("test1"); new MockEntity().AddTag("test1"); Assert.AreEqual(0, EntitiesRunner.Current.GetEntitiesWithTag("abc").Count); Assert.AreEqual(2, EntitiesRunner.Current.GetEntitiesWithTag("test1").Count); }
See Also