示例#1
0
文件: LoadTest.cs 项目: rexzh/RexToy
 public void TestThrowOnError2()
 {
     SampleType1 st = Reflector.LoadInstance <SampleType1>("UnitTest.SampleType1, UnitTest2", false);
 }
示例#2
0
文件: LoadTest.cs 项目: rexzh/RexToy
        public void TestLoadInstance()
        {
            SampleType1 st = Reflector.LoadInstance <SampleType1>("UnitTest.SampleType1, UnitTest");

            Assert.IsNotNull(st);
        }