[NUI] Update TCs of NUI.Devel.
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Tests / Tizen.NUI.Devel.Tests / testcase / internal / Xaml / TSNamescopingVisitor.cs
1 using NUnit.Framework;
2 using System;
3 using System.Collections.Generic;
4 using System.Xml;
5 using Tizen.NUI.Xaml;
6
7 namespace Tizen.NUI.Devel.Tests
8 {
9     using tlog = Tizen.Log;
10
11     [TestFixture]
12     [Description("internal/Xaml/NamescopingVisitor")]
13     public class InternalNamescopingVisitorTest
14     {
15         private const string tag = "NUITEST";
16         private NamescopingVisitor visitor;
17
18         [SetUp]
19         public void Init()
20         {
21             tlog.Info(tag, "Init() is called!");
22             visitor = new NamescopingVisitor(new HydrationContext());
23         }
24
25         [TearDown]
26         public void Destroy()
27         {
28             visitor = null;
29             tlog.Info(tag, "Destroy() is called!");
30         }
31     }
32 }