[NUI] Update TCs of NUI.Devel.
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Tests / Tizen.NUI.Devel.Tests / testcase / internal / XamlBinding / TSContentPropertyAttribute.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/ContentPropertyAttribute")]
16     public class InternalContentPropertyAttributeTest
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("ContentPropertyAttribute constructor")]
35         [Property("SPEC", "ContentPropertyAttribute constructor M")]
36         [Property("SPEC_URL", "-")]
37         [Property("CRITERIA", "MR")]
38         public void ContentPropertyAttributeConstructor()
39         {
40             tlog.Debug(tag, $"ContentPropertyAttributeConstructor START");
41
42             var testingTarget = new ContentPropertyAttribute("content");
43             tlog.Debug(tag, "Name : " + testingTarget.Name);
44
45             tlog.Debug(tag, $"ContentPropertyAttributeConstructor END");
46         }
47     }
48 }