Beispiel #1
0
        public static void test_tostring()
        {
            Eina.Strbuf buf = new Eina.Strbuf();
            buf.Append("Hello");
            buf.Append(' ');
            buf.Append("World!");

            Test.AssertEquals("Hello World!", buf.ToString());
        }
Beispiel #2
0
        public static void test_steal()
        {
            Eina.Strbuf buf = new Eina.Strbuf();

            buf.Append("Here's");
            buf.Append(' ');
            buf.Append("Johnny!");

            Test.AssertEquals("Here's Jonnny!".Length, buf.Length);
            Test.AssertEquals("Here's Johnny!", buf.Steal());
        }
        public static void func_pointer_marshalling()
        {
            var  obj    = new Dummy.TestObject();
            bool called = false;

            Eina.Strbuf buf      = new Eina.Strbuf();
            string      argument = "Some String";

            Eina.Value v = new Eina.Value(Eina.ValueType.String);
            v.Set(argument);
            string reference = new string(argument.ToCharArray().Reverse().ToArray());

            obj.CallFormatCb(buf, v, (Eina.Strbuf ibuf, Eina.Value val) => {
                called     = true;
                string str = null;
                val.Get(out str);
                buf.Append(new string(str.ToCharArray().Reverse().ToArray()));
            });

            Test.Assert(called, "Callback was not called");
            Test.AssertEquals(reference, buf.Steal());
            v.Dispose();
            buf.Dispose();
            obj.Dispose();
        }
Beispiel #4
0
 public override void AppendToStrbuf(Eina.Strbuf buf, string str)
 {
     Eina.Log.Error("Virtual wrapper called");
     called = true;
     buf.Append(str);
 }