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

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