public void MethodOneArg()
        {
            TestClass      orig        = new TestClass();
            ITestInterface asInterface = ReflectedCaster.Default.CastToInterface <ITestInterface>(orig);

            asInterface.MethodOneArg("Hello world");

            Assert.Equal("Hello world", orig.ReturnCode);
        }