7f18ef10a15402a50322bcaed5d95a06877c1907
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Tests / Tizen.NUI.Devel.Tests / testcase / internal / Xaml / TSIDictionaryExtensions.cs
1 using NUnit.Framework;
2
3 namespace Tizen.NUI.Devel.Tests
4 {
5     using tlog = Tizen.Log;
6
7     [TestFixture]
8     [Description("internal/Xaml/IDictionaryExtensions")]
9     internal class PublicIDictionaryExtensionsTest
10     {
11         private const string tag = "NUITEST";
12
13         [SetUp]
14         public void Init()
15         {
16             tlog.Info(tag, "Init() is called!");
17         }
18
19         [TearDown]
20         public void Destroy()
21         {
22             tlog.Info(tag, "Destroy() is called!");
23         }
24
25         //[Test]
26         //[Category("P1")]
27         //[Description("HydrationContext Values")]
28         //[Property("SPEC", "Tizen.NUI.HydrationContext.Values A")]
29         //[Property("SPEC_URL", "-")]
30         //[Property("CRITERIA", "PRW")]
31         //public void IDictionaryExtensionsAddRange()
32         //{
33         //    tlog.Debug(tag, $"HydrationContextValues START");
34
35         //    try
36         //    {
37         //        IDictionary<string, string> dic = new Dictionary<string, string>();
38         //        IEnumerable<KeyValuePair<string, string>> keyValuePairs = new IEnumerable<KeyValuePair<string, string>>();
39         //        IDictionaryExtensions.AddRange<string, string>(dic, keyValuePairs);
40         //    }
41         //    catch (Exception e)
42         //    {
43         //        Tizen.Log.Error(tag, "Caught Exception" + e.ToString());
44         //        Assert.Fail("Caught Exception" + e.ToString());
45         //    }
46
47         //    tlog.Debug(tag, $"HydrationContextValues END (OK)");
48         //    Assert.Pass("HydrationContextValues");
49         //}
50     }
51 }