3 using NUnit.Framework.TUnit;
4 using Tizen.NUI.Components;
5 using Tizen.NUI.BaseComponents;
7 namespace Tizen.NUI.Devel.Tests
9 using tlog = Tizen.Log;
12 [Description("internal/EXaml/Action/AddToCollectionPropertyAction")]
13 public class InternalAddToCollectionPropertyActionTest
15 private const string tag = "NUITEST";
20 tlog.Info(tag, "Init() is called!");
26 tlog.Info(tag, "Destroy() is called!");
31 [Description("AddToCollectionPropertyAction constructor.")]
32 [Property("SPEC", "Tizen.NUI.EXaml.AddToCollectionPropertyAction.AddToCollectionPropertyAction C")]
33 [Property("SPEC_URL", "-")]
34 [Property("CRITERIA", "CONSTR")]
35 [Property("AUTHOR", "guowei.wang@samsung.com")]
36 public void EXamlAddToCollectionPropertyActionConstructor()
38 tlog.Debug(tag, $"EXamlAddToCollectionPropertyActionConstructor START");
40 var testingTarget = new Tizen.NUI.EXaml.AddToCollectionPropertyAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
41 Assert.IsNotNull(testingTarget, "Can't create success object AddToCollectionPropertyAction");
42 Assert.IsInstanceOf<Tizen.NUI.EXaml.AddToCollectionPropertyAction>(testingTarget, "Should be an instance of AddToCollectionPropertyAction type.");
44 tlog.Debug(tag, $"EXamlAddToCollectionPropertyActionConstructor END (OK)");
49 [Description("AddToCollectionPropertyAction Init.")]
50 [Property("SPEC", "Tizen.NUI.EXaml.AddToCollectionPropertyAction.Init M")]
51 [Property("SPEC_URL", "-")]
52 [Property("CRITERIA", "MR")]
53 [Property("AUTHOR", "guowei.wang@samsung.com")]
54 public void EXamlAddToCollectionPropertyActionInit()
56 tlog.Debug(tag, $"EXamlAddToCollectionPropertyActionInit START");
58 var testingTarget = new Tizen.NUI.EXaml.AddToCollectionPropertyAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
59 Assert.IsNotNull(testingTarget, "Can't create success object AddToCollectionPropertyAction");
60 Assert.IsInstanceOf<Tizen.NUI.EXaml.AddToCollectionPropertyAction>(testingTarget, "Should be an instance of AddToCollectionPropertyAction type.");
68 tlog.Debug(tag, e.Message.ToString());
69 Assert.Fail("Caught Exception : Failed!");
72 tlog.Debug(tag, $"EXamlAddToCollectionPropertyActionInit END (OK)");