Ejemplo n.º 1
0
        public void GenericMethodTest()
        {
            dynamic ot = new OtherThing();
            IGenericTest test = Impromptu.ActLike(ot);

            var tResult =test.GetThings<Thing>(Guid.Empty);

            Assert.AreEqual(true, tResult is List<Thing>);

        }