Boo.Lang.Runtime.Tests.RuntimeCoercionTestCase.TestIdentity C# (CSharp) Méthode

TestIdentity() private méthode

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