public void ComponentSystem_Poly_I_TagSys() { EntityFramework.Components.TagSystem tagSys = new Components.TagSystem(); var I_TagSys = (EntityFramework.IComponentSystem)tagSys; Assert.That(tagSys == I_TagSys); }
public void ComponentSystem_Poly_ITag_TagSys() { EntityFramework.Components.TagSystem tagSys = new Components.TagSystem(); var ITag_TagSys = (EntityFramework.IComponentSystem <EntityFramework.ComponentInterfaces.ITag>)tagSys; Assert.That(tagSys == ITag_TagSys); }