Boo.Lang.Runtime.Tests.RuntimeCoercionTestCase.TestIdentity C# (CSharp) 메소드

TestIdentity() 개인적인 메소드

private TestIdentity ( ) : void
리턴 void
        public void TestIdentity()
        {
            string s = "foo";
            Assert.AreSame(s, Coerce(s, typeof(string)));
            Assert.AreSame(s, Coerce(s, typeof(object)));
        }