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