[NUI] Update TCs of NUI.Devel.
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Tests / Tizen.NUI.Devel.Tests / testcase / internal / XamlBinding / TSNUIConstantExtension.cs
1 using global::System;
2 using NUnit.Framework;
3 using NUnit.Framework.TUnit;
4 using Tizen.NUI.Components;
5 using Tizen.NUI.BaseComponents;
6 using System.Reflection;
7 using System.Collections.Generic;
8 using Tizen.NUI.Binding;
9
10 namespace Tizen.NUI.Devel.Tests
11 {
12     using tlog = Tizen.Log;
13
14     [TestFixture]
15     [Description("internal/XamlBinding/NUIConstantExtension")]
16     public class InternalNUIConstantExtensionTest
17     {
18         private const string tag = "NUITEST";
19
20         [SetUp]
21         public void Init()
22         {
23             tlog.Info(tag, "Init() is called!");
24         }
25
26         [TearDown]
27         public void Destroy()
28         {
29             tlog.Info(tag, "Destroy() is called!");
30         }
31
32         [Test]
33         [Category("P1")]
34         [Description("NUIConstantExtension.VisualExtension KeyDictionary")]
35         [Property("SPEC", "Tizen.NUI.NUIConstantExtension.VisualExtension.KeyDictionary M")]
36         [Property("SPEC_URL", "-")]
37         [Property("CRITERIA", "MR")]
38         public void NUIConstantExtensionKeyDictionary()
39         {
40             tlog.Debug(tag, $"NUIConstantExtensionKeyDictionary START");
41
42             var result = VisualExtension.KeyDictionary;
43             tlog.Debug(tag, "KeyDictionary : " + result);
44
45             tlog.Debug(tag, $"NUIConstantExtensionKeyDictionary END");
46         }
47     }
48 }