public void AddTest()
 {
     TypeTable target = new TypeTable(); // TODO: 初始化为适当的值
     string key = string.Empty; // TODO: 初始化为适当的值
     Type type = null; // TODO: 初始化为适当的值
     target.Add( key, type );
     Assert.Inconclusive( "无法验证不返回值的方法。" );
 }
 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( "验证此测试方法的正确性。" );
 }
 public void TypeTableConstructorTest()
 {
     TypeTable target = new TypeTable();
     Assert.Inconclusive( "TODO: 实现用来验证目标的代码" );
 }