Exemplo n.º 1
0
 public void Unit_GetType2()
 {
     try {
         DocumentationFilter.GetType("TomasHalac.DocumentationFilter.QualityAssurance.NotFound", typeof(Tests).Assembly);
         Assert.Fail();
     } catch (System.Exception) {
     }
 }
Exemplo n.º 2
0
        public void Unit_GetType()
        {
            var actual = DocumentationFilter.GetType("TomasHalac.DocumentationFilter.QualityAssurance.Tests", typeof(Tests).Assembly);

            Assert.AreEqual(typeof(Tests), actual);
        }