コード例 #1
0
        /// <summary>
        ///A test for GetInstanceByType
        ///</summary>
        public void GetInstanceByTypeTestHelper <T>()
        {
            Type type = typeof(MockObject);

            object[] args = null;
            T        actual;

            actual = target.GetInstanceByType <T>(type, args);
            Assert.IsNotNull(actual);
        }