当前位置: 首页>>代码示例>>C#>>正文


C# TestState.GetAllComponents方法代码示例

本文整理汇总了C#中TestState.GetAllComponents方法的典型用法代码示例。如果您正苦于以下问题:C# TestState.GetAllComponents方法的具体用法?C# TestState.GetAllComponents怎么用?C# TestState.GetAllComponents使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TestState的用法示例。


在下文中一共展示了TestState.GetAllComponents方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ShouldRemoveAllComponentsFromGameState

 public void ShouldRemoveAllComponentsFromGameState()
 {
     var state = new TestState();
     var fooComp1 = new FooComponent();
     var fooComp2 = new FooComponent();
     state.AddComponent(fooComp1);
     state.AddComponent(fooComp2);
     Assert.AreEqual(state.GetAllComponents().Count(), 2);
     state.RemoveAllComponents();
     Assert.IsEmpty(state.GetAllComponents());
 }
开发者ID:remy22,项目名称:TriEngine,代码行数:11,代码来源:GameStateTests.cs

示例2: ShouldRemoveAllComponentsMatchingPredicateFromGameState

        public void ShouldRemoveAllComponentsMatchingPredicateFromGameState()
        {
            var state = new TestState();
            var fooComp1 = new FooComponent();
            var fooComp2 = new FooComponent {Test = "NewFoo"};
            state.AddComponent(fooComp1);
            state.AddComponent(fooComp2);
            Assert.AreEqual(state.GetAllComponents().Count(), 2);

            // This is ok in this code, since we only have a FooComponent in the GameState
            // at the moment. In production code we should probably cast c to FooComponent
            // and make sure it's not null before checking the Test field.
            state.RemoveAllComponents(c => ((FooComponent)c).Test == "Foo");

            // The component should only have one element left, as we changed the value of
            // the Test field on one of the objects.
            Assert.AreEqual(state.GetAllComponents().Count(), 1);
        }
开发者ID:remy22,项目名称:TriEngine,代码行数:18,代码来源:GameStateTests.cs

示例3: ShouldReturnAllComponentsMatchingPredicate

        public void ShouldReturnAllComponentsMatchingPredicate()
        {
            var state = new TestState();
            var fooComp = new FooComponent();
            var customFoo = new FooComponent { Test = "NewFoo" };
            var barComp = new BarComponent();
            var customBar = new BarComponent { Test = "NewBar" };
            state.AddComponent(fooComp);
            state.AddComponent(customFoo);
            state.AddComponent(barComp);
            state.AddComponent(customBar);

            // We have to do some null checking, as we have both Foo and Bar components
            // in the game state.

            Assert.AreEqual(state.GetAllComponents(c =>
            {
                var f = c as FooComponent;
                return f != null && f.Test == "NewFoo";
            }).Count(), 1);

            Assert.IsEmpty(state.GetAllComponents(c =>
            {
                var f = c as FooComponent;
                return f != null && f.Test == "NewBar";
            }));
        }
开发者ID:remy22,项目名称:TriEngine,代码行数:27,代码来源:GameStateTests.cs

示例4: ShouldReturnAllComponentsOfType

 public void ShouldReturnAllComponentsOfType()
 {
     var state = new TestState();
     var fooComp = new FooComponent();
     var customFoo = new FooComponent { Test = "NewFoo" };
     var barComp = new BarComponent();
     var customBar = new BarComponent { Test = "NewBar" };
     state.AddComponent(fooComp);
     state.AddComponent(customFoo);
     state.AddComponent(barComp);
     state.AddComponent(customBar);
     Assert.AreEqual(state.GetAllComponents(typeof(FooComponent)).Count(), 2);
 }
开发者ID:remy22,项目名称:TriEngine,代码行数:13,代码来源:GameStateTests.cs

示例5: ShouldRemoveComponentFromGameState

 public void ShouldRemoveComponentFromGameState()
 {
     var state = new TestState();
     var fooComp = new FooComponent();
     state.AddComponent(fooComp);
     Assert.IsNotEmpty(state.GetAllComponents());
     state.RemoveComponent(fooComp);
     Assert.IsEmpty(state.GetAllComponents());
 }
开发者ID:remy22,项目名称:TriEngine,代码行数:9,代码来源:GameStateTests.cs


注:本文中的TestState.GetAllComponents方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。