示例#1
0
        public static void TestUShort()
        {
            var type = new ABT.UShortType(isConst: true);

            Assert.AreEqual("const unsigned short a", type.Decl("a"));
            Assert.AreEqual("const unsigned short", type.Decl());
        }
示例#2
0
 public static void TestUShort() {
     var type = new ABT.UShortType(isConst: true);
     Assert.AreEqual("const unsigned short a", type.Decl("a"));
     Assert.AreEqual("const unsigned short", type.Decl());
 }