public void EXamlGatherBindablePropertiesBlockConstructor()
        {
            tlog.Debug(tag, $"EXamlGatherBindablePropertiesBlockConstructor START");

            var testingTarget = new Tizen.NUI.EXaml.GatherBindablePropertiesBlock(new Tizen.NUI.EXaml.GlobalDataList(), null);

            Assert.IsNotNull(testingTarget, "Can't create success object GatherBindablePropertiesBlock");
            Assert.IsInstanceOf <Tizen.NUI.EXaml.GatherBindablePropertiesBlock>(testingTarget, "Should be an instance of GatherBindablePropertiesBlock type.");

            tlog.Debug(tag, $"EXamlGatherBindablePropertiesBlockConstructor END (OK)");
        }
        public void EXamlGatherBindablePropertiesBlockInit()
        {
            tlog.Debug(tag, $"EXamlGatherBindablePropertiesBlockInit START");

            var testingTarget = new Tizen.NUI.EXaml.GatherBindablePropertiesBlock(new Tizen.NUI.EXaml.GlobalDataList(), null);

            Assert.IsNotNull(testingTarget, "Can't create success object GatherBindablePropertiesBlock");
            Assert.IsInstanceOf <Tizen.NUI.EXaml.GatherBindablePropertiesBlock>(testingTarget, "Should be an instance of GatherBindablePropertiesBlock type.");

            try
            {
                testingTarget.Init();
            }
            catch (Exception e)
            {
                tlog.Debug(tag, e.Message.ToString());
                Assert.Fail("Caught Exception : Failed!");
            }

            tlog.Debug(tag, $"EXamlGatherBindablePropertiesBlockInit END (OK)");
        }