Merge remote-tracking branch 'origin/master' into tizen
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Tests / Tizen.NUI.Devel.Tests / testcase / internal / Widget / TSWidgetImplPtr.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
7 namespace Tizen.NUI.Devel.Tests
8 {
9     using tlog = Tizen.Log;
10
11     [TestFixture]
12     [Description("Internal/Widget/WidgetImplPtr")]
13     public class InternalWidgetImplPtrTest
14     {
15         private const string tag = "NUITEST";
16
17         internal class MyWidgetImplPtr : WidgetImplPtr
18         {
19             public MyWidgetImplPtr() : base()
20             { }
21         }
22
23         [SetUp]
24         public void Init()
25         {
26             tlog.Info(tag, "Init() is called!");
27         }
28
29         [TearDown]
30         public void Destroy()
31         {
32             tlog.Info(tag, "Destroy() is called!");
33         }
34
35         [Test]
36         [Category("P1")]
37         [Description("WidgetImplPtr Constructor.")]
38         [Property("SPEC", "Tizen.NUI.WidgetImplPtr.WidgetImplPtr C")]
39         [Property("SPEC_URL", "-")]
40         [Property("CRITERIA", "CONSTR")]
41         [Property("AUTHOR", "guowei.wang@samsung.com")]
42         public void WidgetImplPtrConstructorWithIntPtr()
43         {
44             tlog.Debug(tag, $"WidgetImplPtrConstructorWithIntPtr START");
45
46             Widget widget = new Widget();
47
48             var testingTarget = new WidgetImplPtr(widget.GetIntPtr());
49             Assert.IsNotNull(testingTarget, "Can't create success object WidgetImplPtr");
50             Assert.IsInstanceOf<WidgetImplPtr>(testingTarget, "Should be an instance of WidgetImplPtr type.");
51
52             widget.Dispose();
53             widget = null;
54             tlog.Debug(tag, $"WidgetImplPtrConstructorWithIntPtr END (OK)");
55         }
56
57         [Test]
58         [Category("P1")]
59         [Description("WidgetImplPtr Constructor.")]
60         [Property("SPEC", "Tizen.NUI.WidgetImplPtr.WidgetImplPtr C")]
61         [Property("SPEC_URL", "-")]
62         [Property("CRITERIA", "MR")]
63         [Property("AUTHOR", "guowei.wang@samsung.com")]
64         public void WidgetImplPtrConstructor()
65         {
66             tlog.Debug(tag, $"WidgetImplPtrConstructor START");
67
68             Widget widget = new Widget();
69
70             var testingTarget = new MyWidgetImplPtr();
71             Assert.IsNotNull(testingTarget, "Can't create success object WidgetImplPtr");
72             Assert.IsInstanceOf<WidgetImplPtr>(testingTarget, "Should be an instance of WidgetImplPtr type.");
73
74             widget.Dispose();
75             widget = null;
76             tlog.Debug(tag, $"WidgetImplPtrConstructor END (OK)");
77         }
78     }
79 }