示例#1
0
        public void TestConvertToInt16()
        {
            var a = new PyInt(5);

            Assert.IsInstanceOf(typeof(short), a.ToInt16());
            Assert.AreEqual(5, a.ToInt16());
        }