[NUI] Removed failed testcases
authorXianbing Teng <xb.teng@samsung.com>
Fri, 10 Sep 2021 07:36:21 +0000 (15:36 +0800)
committerSeoyeon2Kim <34738918+Seoyeon2Kim@users.noreply.github.com>
Mon, 13 Sep 2021 07:33:23 +0000 (16:33 +0900)
17 files changed:
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSAddEventAction.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSAddExistInstanceAction.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSAddToCollectionPropertyAction.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSAddToResourceDictionary.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSCallAddMethodAction.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSCreateInstanceAction.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSGetObjectByPropertyAction.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSOtherAction.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSRegisterXNameAction.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSSetBindalbePropertyAction.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSSetBindingAction.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSSetDynamicResourceAction.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSSetPropertyAction.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Block/TSGatherBindablePropertiesBlock.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Block/TSGatherEventsBlock.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Block/TSGatherMethodsBlock.cs [deleted file]
test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Block/TSGatherPropertiesBlock.cs [deleted file]

diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSAddEventAction.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSAddEventAction.cs
deleted file mode 100755 (executable)
index 47a60f1..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Action/AddEventAction")]
-    public class InternalAddEventActionTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("AddEventAction AddEventAction.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.AddEventAction.AddEventAction C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlAddEventActionConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlAddEventActionConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.AddEventAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object AddEventAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.AddEventAction>(testingTarget, "Should be an instance of AddEventAction type.");
-
-        //    tlog.Debug(tag, $"EXamlAddEventActionConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("AddEventAction Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.AddEventAction.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlAddEventActionInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlAddEventActionInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.AddEventAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object AddEventAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.AddEventAction>(testingTarget, "Should be an instance of AddEventAction type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlAddEventActionInit END (OK)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSAddExistInstanceAction.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSAddExistInstanceAction.cs
deleted file mode 100755 (executable)
index 461aef7..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Action/AddExistInstanceAction")]
-    public class InternalAddExistInstanceActionTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("AddExistInstanceAction AddExistInstanceAction.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.AddExistInstanceAction.AddExistInstanceAction C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlAddExistInstanceActionConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlAddExistInstanceActionConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.AddExistInstanceAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object AddExistInstanceAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.AddExistInstanceAction>(testingTarget, "Should be an instance of AddExistInstanceAction type.");
-
-        //    tlog.Debug(tag, $"EXamlAddExistInstanceActionConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("AddExistInstanceAction Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.AddExistInstanceAction.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlAddExistInstanceActionInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlAddExistInstanceActionInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.AddExistInstanceAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object AddExistInstanceAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.AddExistInstanceAction>(testingTarget, "Should be an instance of AddExistInstanceAction type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlAddExistInstanceActionInit END (OK)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSAddToCollectionPropertyAction.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSAddToCollectionPropertyAction.cs
deleted file mode 100755 (executable)
index 3420830..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Action/AddToCollectionPropertyAction")]
-    public class InternalAddToCollectionPropertyActionTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("AddToCollectionPropertyAction constructor.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.AddToCollectionPropertyAction.AddToCollectionPropertyAction C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlAddToCollectionPropertyActionConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlAddToCollectionPropertyActionConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.AddToCollectionPropertyAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object AddToCollectionPropertyAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.AddToCollectionPropertyAction>(testingTarget, "Should be an instance of AddToCollectionPropertyAction type.");
-
-        //    tlog.Debug(tag, $"EXamlAddToCollectionPropertyActionConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("AddToCollectionPropertyAction Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.AddToCollectionPropertyAction.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlAddToCollectionPropertyActionInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlAddToCollectionPropertyActionInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.AddToCollectionPropertyAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object AddToCollectionPropertyAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.AddToCollectionPropertyAction>(testingTarget, "Should be an instance of AddToCollectionPropertyAction type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlAddToCollectionPropertyActionInit END (OK)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSAddToResourceDictionary.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSAddToResourceDictionary.cs
deleted file mode 100755 (executable)
index 30e2522..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-// using global::System;
-// using NUnit.Framework;
-// using NUnit.Framework.TUnit;
-// using Tizen.NUI.Components;
-// using Tizen.NUI.BaseComponents;
-
-// namespace Tizen.NUI.Devel.Tests
-// {
-//     using tlog = Tizen.Log;
-
-//     [TestFixture]
-//     [Description("internal/EXaml/Action/AddToResourceDictionary")]
-//     public class InternalAddToResourceDictionaryTest
-//     {
-//         private const string tag = "NUITEST";
-
-//         [SetUp]
-//         public void Init()
-//         {
-//             tlog.Info(tag, "Init() is called!");
-//         }
-
-//         [TearDown]
-//         public void Destroy()
-//         {
-//             tlog.Info(tag, "Destroy() is called!");
-//         }
-
-//         [Test]
-//         [Category("P1")]
-//         [Description("AddToResourceDictionary constructor.")]
-//         [Property("SPEC", "Tizen.NUI.EXaml.AddToResourceDictionary.AddToResourceDictionary C")]
-//         [Property("SPEC_URL", "-")]
-//         [Property("CRITERIA", "CONSTR")]
-//         [Property("AUTHOR", "guowei.wang@samsung.com")]
-//         public void EXamlAddToResourceDictionaryConstructor()
-//         {
-//             tlog.Debug(tag, $"EXamlAddToResourceDictionaryConstructor START");
-
-//             var testingTarget = new Tizen.NUI.EXaml.AddToResourceDictionary(new Tizen.NUI.EXaml.GlobalDataList(), new List<object>(){1, "dictionary", null});
-//             Assert.IsNotNull(testingTarget, "Can't create success object AddToResourceDictionary");
-//             Assert.IsInstanceOf<Tizen.NUI.EXaml.AddToResourceDictionary>(testingTarget, "Should be an instance of AddToResourceDictionary type.");
-
-//             tlog.Debug(tag, $"EXamlAddToResourceDictionaryConstructor END (OK)");
-//         }
-//     }
-// }
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSCallAddMethodAction.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSCallAddMethodAction.cs
deleted file mode 100755 (executable)
index 8e767bb..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Action/CallAddMethodAction")]
-    public class InternalCallAddMethodActionTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("CallAddMethodAction construtor.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.CallAddMethodAction.CallAddMethodAction C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlCallAddMethodActionConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlCallAddMethodActionConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.CallAddMethodAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object CallAddMethodAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.CallAddMethodAction>(testingTarget, "Should be an instance of CallAddMethodAction type.");
-
-        //    tlog.Debug(tag, $"EXamlCallAddMethodActionConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("CallAddMethodAction Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.CallAddMethodAction.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlCallAddMethodActionInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlCallAddMethodActionInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.CallAddMethodAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object CallAddMethodAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.CallAddMethodAction>(testingTarget, "Should be an instance of CallAddMethodAction type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlCallAddMethodActionInit END (OK)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSCreateInstanceAction.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSCreateInstanceAction.cs
deleted file mode 100755 (executable)
index 5891db6..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Action/CreateInstanceAction")]
-    public class InternalCreateInstanceActionTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("CreateInstanceAction constructor.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.CreateInstanceAction.CreateInstanceAction C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlCreateInstanceActionConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlCreateInstanceActionConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.CreateInstanceAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object CreateInstanceAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.CreateInstanceAction>(testingTarget, "Should be an instance of CreateInstanceAction type.");
-
-        //    tlog.Debug(tag, $"EXamlCreateInstanceActionConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("CreateInstanceAction Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.CreateInstanceAction.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlCreateInstanceActionInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlCreateInstanceActionInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.CreateInstanceAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object CreateInstanceAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.CreateInstanceAction>(testingTarget, "Should be an instance of CreateInstanceAction type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlCreateInstanceActionnit END (OK)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSGetObjectByPropertyAction.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSGetObjectByPropertyAction.cs
deleted file mode 100755 (executable)
index 7f18975..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Action/GetObjectByPropertyAction")]
-    public class InternalGetObjectByPropertyActionTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("GetObjectByPropertyAction constructor.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.GetObjectByPropertyAction.GetObjectByPropertyAction C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlGetObjectByPropertyActionConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlGetObjectByPropertyActionConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.GetObjectByPropertyAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object GetObjectByPropertyAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.GetObjectByPropertyAction>(testingTarget, "Should be an instance of GetObjectByPropertyAction type.");
-
-        //    tlog.Debug(tag, $"EXamlGetObjectByPropertyActionConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("GetObjectByPropertyAction Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.GetObjectByPropertyAction.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlGetObjectByPropertyActionInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlGetObjectByPropertyActionInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.GetObjectByPropertyAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object GetObjectByPropertyAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.GetObjectByPropertyAction>(testingTarget, "Should be an instance of GetObjectByPropertyAction type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlGetObjectByPropertyActionInit END (OK)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSOtherAction.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSOtherAction.cs
deleted file mode 100755 (executable)
index fe668b9..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Action/OtherAction")]
-    public class InternalEXamlOtherActionTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("OtherAction constructor.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.OtherAction.OtherAction C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlOtherActionConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlOtherActionConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.OtherAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object OtherAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.OtherAction>(testingTarget, "Should be an instance of OtherAction type.");
-
-        //    tlog.Debug(tag, $"EXamlOtherActionConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("OtherAction Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.OtherAction.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlOtherActionInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlOtherActionInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.OtherAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object OtherAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.OtherAction>(testingTarget, "Should be an instance of OtherAction type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlOtherActionInit END (OK)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSRegisterXNameAction.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSRegisterXNameAction.cs
deleted file mode 100755 (executable)
index 269516e..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Action/RegisterXNameAction")]
-    public class InternalEXamlRegisterXNameActionTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("RegisterXNameAction constructor.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.RegisterXNameAction.RegisterXNameAction C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlRegisterXNameActionConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlRegisterXNameActionConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.RegisterXNameAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object RegisterXNameAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.RegisterXNameAction>(testingTarget, "Should be an instance of RegisterXNameAction type.");
-
-        //    tlog.Debug(tag, $"EXamlRegisterXNameActionConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("RegisterXNameAction Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.RegisterXNameAction.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlRegisterXNameActionInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlRegisterXNameActionInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.RegisterXNameAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object RegisterXNameAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.RegisterXNameAction>(testingTarget, "Should be an instance of RegisterXNameAction type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlRegisterXNameActionInit END (OK)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSSetBindalbePropertyAction.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSSetBindalbePropertyAction.cs
deleted file mode 100755 (executable)
index da2f710..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Action/SetBindalbePropertyAction")]
-    public class InternalEXamlSetBindalbePropertyActionTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("SetBindalbePropertyAction constructor.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.SetBindalbePropertyAction.SetBindalbePropertyAction C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlSetBindalbePropertyActionConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlSetBindalbePropertyActionConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.SetBindalbePropertyAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object SetBindalbePropertyAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.SetBindalbePropertyAction>(testingTarget, "Should be an instance of SetBindalbePropertyAction type.");
-
-        //    tlog.Debug(tag, $"EXamlSetBindalbePropertyActionConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("SetBindalbePropertyAction Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.SetBindalbePropertyAction.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlSetBindalbePropertyActionInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlSetBindalbePropertyActionInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.SetBindalbePropertyAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object SetBindalbePropertyAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.SetBindalbePropertyAction>(testingTarget, "Should be an instance of SetBindalbePropertyAction type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlSetBindalbePropertyActionInit END (OK)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSSetBindingAction.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSSetBindingAction.cs
deleted file mode 100755 (executable)
index f537ec5..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Action/SetBindingAction")]
-    public class InternalEXamlSetBindingActionTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("SetBindingAction constructor.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.SetBindingAction.SetBindingAction C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlSetBindingActionConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlSetBindingActionConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.SetBindingAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object SetBindingAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.SetBindingAction>(testingTarget, "Should be an instance of SetBindingAction type.");
-
-        //    tlog.Debug(tag, $"EXamlSetBindingActionConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("SetBindingAction Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.SetBindingAction.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlSetBindingActionInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlSetBindingActionInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.SetBindingAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object SetBindingAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.SetBindingAction>(testingTarget, "Should be an instance of SetBindingAction type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlSetBindingActionInit END (OK)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSSetDynamicResourceAction.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSSetDynamicResourceAction.cs
deleted file mode 100755 (executable)
index 7be12cf..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Action/SetDynamicResourceAction")]
-    public class InternalEXamlSetDynamicResourceActionTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("SetDynamicResourceAction constructor.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.SetDynamicResourceAction.SetDynamicResourceAction C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlSetDynamicResourceActionConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlSetDynamicResourceActionConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.SetDynamicResourceAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object SetDynamicResourceAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.SetDynamicResourceAction>(testingTarget, "Should be an instance of SetDynamicResourceAction type.");
-
-        //    tlog.Debug(tag, $"EXamlSetDynamicResourceActionConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("SetDynamicResourceAction Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.SetDynamicResourceAction.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlSetDynamicResourceActionInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlSetDynamicResourceActionInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.SetDynamicResourceAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object SetDynamicResourceAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.SetDynamicResourceAction>(testingTarget, "Should be an instance of SetDynamicResourceAction type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlSetDynamicResourceActionInit END (OK)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSSetPropertyAction.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Action/TSSetPropertyAction.cs
deleted file mode 100755 (executable)
index fb11fbd..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Action/SetPropertyAction")]
-    public class InternalEXamlSetPropertyActionTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("SetPropertyAction constructor.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.SetPropertyAction.SetPropertyAction C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlSetPropertyActionConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlSetPropertyActionConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.SetPropertyAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object SetPropertyAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.SetPropertyAction>(testingTarget, "Should be an instance of SetPropertyAction type.");
-
-        //    tlog.Debug(tag, $"EXamlSetPropertyActionConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("SetPropertyAction Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.SetPropertyAction.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlSetPropertyActionInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlSetPropertyActionInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.SetPropertyAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object SetPropertyAction");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.SetPropertyAction>(testingTarget, "Should be an instance of SetPropertyAction type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlSetPropertyActionInit END (OK)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Block/TSGatherBindablePropertiesBlock.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Block/TSGatherBindablePropertiesBlock.cs
deleted file mode 100755 (executable)
index b3a6397..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Block/GatherBindablePropertiesBlock")]
-    internal class PublicGatherBindablePropertiesBlockTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("GatherBindablePropertiesBlock constructor.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.GatherBindablePropertiesBlock.GatherBindablePropertiesBlock C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //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)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("GatherBindablePropertiesBlock Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.GatherBindablePropertiesBlock.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //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)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Block/TSGatherEventsBlock.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Block/TSGatherEventsBlock.cs
deleted file mode 100755 (executable)
index 5ad51d7..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Block/GatherEventsBlock")]
-    internal class PublicGatherEventsBlockTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("GatherEventsBlock constructor.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.GatherEventsBlock.GatherEventsBlock C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlGatherEventsBlockConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlGatherEventsBlockConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.GatherEventsBlock(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object GatherEventsBlock");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.GatherEventsBlock>(testingTarget, "Should be an instance of GatherEventsBlock type.");
-
-        //    tlog.Debug(tag, $"EXamlGatherEventsBlockConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("GatherEventsBlock Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.GatherEventsBlock.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlGatherEventsBlockInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlGatherEventsBlockInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.GatherEventsBlock(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object GatherEventsBlock");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.GatherEventsBlock>(testingTarget, "Should be an instance of GatherEventsBlock type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlGatherEventsBlockInit END (OK)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Block/TSGatherMethodsBlock.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Block/TSGatherMethodsBlock.cs
deleted file mode 100755 (executable)
index 0a59ddc..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Block/GatherMethodsBlock")]
-    internal class PublicGatherMethodsBlockTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("GatherMethodsBlock constructor.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.GatherMethodsBlock.GatherMethodsBlock C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlGatherMethodsBlockConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlGatherMethodsBlockConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.GatherMethodsBlock(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object GatherMethodsBlock");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.GatherMethodsBlock>(testingTarget, "Should be an instance of GatherMethodsBlock type.");
-
-        //    tlog.Debug(tag, $"EXamlGatherMethodsBlockConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("GatherMethodsBlock Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.GatherMethodsBlock.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlGatherMethodsBlockInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlGatherMethodsBlockInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.GatherMethodsBlock(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object GatherMethodsBlock");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.GatherMethodsBlock>(testingTarget, "Should be an instance of GatherMethodsBlock type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlGatherMethodsBlockInit END (OK)");
-        //}
-    }
-}
diff --git a/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Block/TSGatherPropertiesBlock.cs b/test/Tizen.NUI.Tests/Tizen.NUI.Devel.Tests/testcase/internal/EXaml/Block/TSGatherPropertiesBlock.cs
deleted file mode 100755 (executable)
index 4f1eca4..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-using global::System;
-using NUnit.Framework;
-using NUnit.Framework.TUnit;
-using Tizen.NUI.Components;
-using Tizen.NUI.BaseComponents;
-
-namespace Tizen.NUI.Devel.Tests
-{
-    using tlog = Tizen.Log;
-
-    [TestFixture]
-    [Description("internal/EXaml/Block/GatherPropertiesBlock")]
-    internal class PublicGatherPropertiesBlockTest
-    {
-        private const string tag = "NUITEST";
-
-        [SetUp]
-        public void Init()
-        {
-            tlog.Info(tag, "Init() is called!");
-        }
-
-        [TearDown]
-        public void Destroy()
-        {
-            tlog.Info(tag, "Destroy() is called!");
-        }
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("GatherPropertiesBlock constructor.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.GatherPropertiesBlock.GatherPropertiesBlock C")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "CONSTR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlGatherPropertiesBlockConstructor()
-        //{
-        //    tlog.Debug(tag, $"EXamlGatherPropertiesBlockConstructor START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.GatherPropertiesBlock(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object GatherPropertiesBlock");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.GatherPropertiesBlock>(testingTarget, "Should be an instance of GatherPropertiesBlock type.");
-
-        //    tlog.Debug(tag, $"EXamlGatherPropertiesBlockConstructor END (OK)");
-        //}
-
-        //[Test]
-        //[Category("P1")]
-        //[Description("GatherPropertiesBlock Init.")]
-        //[Property("SPEC", "Tizen.NUI.EXaml.GatherPropertiesBlock.Init M")]
-        //[Property("SPEC_URL", "-")]
-        //[Property("CRITERIA", "MR")]
-        //[Property("AUTHOR", "guowei.wang@samsung.com")]
-        //public void EXamlGatherPropertiesBlockInit()
-        //{
-        //    tlog.Debug(tag, $"EXamlGatherPropertiesBlockInit START");
-
-        //    var testingTarget = new Tizen.NUI.EXaml.GatherPropertiesBlock(new Tizen.NUI.EXaml.GlobalDataList(), null);
-        //    Assert.IsNotNull(testingTarget, "Can't create success object GatherPropertiesBlock");
-        //    Assert.IsInstanceOf<Tizen.NUI.EXaml.GatherPropertiesBlock>(testingTarget, "Should be an instance of GatherPropertiesBlock type.");
-
-        //    try
-        //    {
-        //        testingTarget.Init();
-        //    }
-        //    catch (Exception e)
-        //    {
-        //        tlog.Debug(tag, e.Message.ToString());
-        //        Assert.Fail("Caught Exception : Failed!");
-        //    }
-
-        //    tlog.Debug(tag, $"EXamlGatherPropertiesBlockInit END (OK)");
-        //}
-    }
-}