d6c24146660101c6ff3ae5e41f2f6574cd7c41c5
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Tests / Tizen.NUI.Devel.Tests / testcase / public / Xaml / TSXamlFilePathAttribute.cs
1 using NUnit.Framework;
2 using Tizen.NUI.Xaml;
3
4 namespace Tizen.NUI.Devel.Tests
5 {
6     using tlog = Tizen.Log;
7
8     [TestFixture]
9     [Description("public/xaml/XamlFilePathAttribute")]
10     internal class PublicXamlFilePathAttributeTest
11     {
12         private const string tag = "NUITEST";
13
14         [SetUp]
15         public void Init()
16         {
17             tlog.Info(tag, "Init() is called!");
18         }
19
20         [TearDown]
21         public void Destroy()
22         {
23             tlog.Info(tag, "Destroy() is called!");
24         }
25
26         [Test]
27         [Category("P1")]
28         [Description("XamlFilePathAttribute XamlFilePathAttribute")]
29         [Property("SPEC", "Tizen.NUI.XamlFilePathAttribute.XamlFilePathAttribute C")]
30         [Property("SPEC_URL", "-")]
31         [Property("CRITERIA", "CONSTR")]
32         public void XamlFilePathAttributeConstructor()
33         {
34             tlog.Debug(tag, $"XamlFilePathAttributeConstructor START");
35
36             XamlFilePathAttribute x1 = new XamlFilePathAttribute("myPath");
37
38             tlog.Debug(tag, $"XamlFilePathAttributeConstructor END (OK)");
39             Assert.Pass("XamlFilePathAttributeConstructor");
40         }
41     }
42 }