public void GetTest()
 {
     TypeTable target = new TypeTable(); // TODO: 初始化为适当的值
     string key = string.Empty; // TODO: 初始化为适当的值
     bool ignoreCase = false; // TODO: 初始化为适当的值
     Type expected = null; // TODO: 初始化为适当的值
     Type actual;
     actual = target.Get( key, ignoreCase );
     Assert.AreEqual( expected, actual );
     Assert.Inconclusive( "验证此测试方法的正确性。" );
 }
Example #2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="strFullName"></param>
 /// <param name="ignoreCase"></param>
 /// <returns></returns>
 public Type GetTypeByFullName(string strFullName, bool ignoreCase)
 {
     return(m_FullNames.Get(strFullName, ignoreCase));
 }
Example #3
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="strName"></param>
 /// <param name="ignoreCase"></param>
 /// <returns></returns>
 public Type GetTypeByName(string strName, bool ignoreCase)
 {
     return(m_Names.Get(strName, ignoreCase));
 }