public void ItemLeavedMapEventArgsConstructorTest()
 {
     BaseItem item = null; // TODO: 初始化为适当的值
     BaseMap map = null; // TODO: 初始化为适当的值
     ItemLeavedMapEventArgs target = new ItemLeavedMapEventArgs( item, map );
     Assert.Inconclusive( "TODO: 实现用来验证目标的代码" );
 }
예제 #2
0
        public void ItemLeavedMapEventArgsConstructorTest()
        {
            BaseItem item = null; // TODO: 初始化为适当的值
            BaseMap  map  = null; // TODO: 初始化为适当的值
            ItemLeavedMapEventArgs target = new ItemLeavedMapEventArgs(item, map);

            Assert.Inconclusive("TODO: 实现用来验证目标的代码");
        }
 public void ItemTest()
 {
     BaseItem item = null; // TODO: 初始化为适当的值
     BaseMap map = null; // TODO: 初始化为适当的值
     ItemLeavedMapEventArgs target = new ItemLeavedMapEventArgs( item, map ); // TODO: 初始化为适当的值
     BaseItem actual;
     actual = target.Item;
     Assert.Inconclusive( "验证此测试方法的正确性。" );
 }
예제 #4
0
        /// <summary>
        ///
        /// </summary>
        internal void OnLeavedMap(BaseItem item, BaseMap map)
        {
            EventHandler <ItemLeavedMapEventArgs> tempAfterEventArgs = m_EventItemLeavedMap;

            if (tempAfterEventArgs != null)
            {
                ItemLeavedMapEventArgs eventArgs = new ItemLeavedMapEventArgs(item, map);
                tempAfterEventArgs(this, eventArgs);
            }
        }
예제 #5
0
        public void ItemTest()
        {
            BaseItem item = null;                                                  // TODO: 初始化为适当的值
            BaseMap  map  = null;                                                  // TODO: 初始化为适当的值
            ItemLeavedMapEventArgs target = new ItemLeavedMapEventArgs(item, map); // TODO: 初始化为适当的值
            BaseItem actual;

            actual = target.Item;
            Assert.Inconclusive("验证此测试方法的正确性。");
        }
예제 #6
0
 /// <summary>
 /// 
 /// </summary>
 internal void OnLeavedMap( BaseItem item, BaseMap map )
 {
     EventHandler<ItemLeavedMapEventArgs> tempAfterEventArgs = m_EventItemLeavedMap;
     if ( tempAfterEventArgs != null )
     {
         ItemLeavedMapEventArgs eventArgs = new ItemLeavedMapEventArgs( item, map );
         tempAfterEventArgs( this, eventArgs );
     }
 }