Boo.Lang.Runtime.Tests.RuntimeCoercionTestCase.TestIdentity C# (CSharp) Method

TestIdentity() private method

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