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/OtherAction")]
13 public class InternalEXamlOtherActionTest
15 private const string tag = "NUITEST";
20 tlog.Info(tag, "Init() is called!");
26 tlog.Info(tag, "Destroy() is called!");
31 //[Description("OtherAction constructor.")]
32 //[Property("SPEC", "Tizen.NUI.EXaml.OtherAction.OtherAction C")]
33 //[Property("SPEC_URL", "-")]
34 //[Property("CRITERIA", "CONSTR")]
35 //[Property("AUTHOR", "guowei.wang@samsung.com")]
36 //public void EXamlOtherActionConstructor()
38 // tlog.Debug(tag, $"EXamlOtherActionConstructor START");
40 // var testingTarget = new Tizen.NUI.EXaml.OtherAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
41 // Assert.IsNotNull(testingTarget, "Can't create success object OtherAction");
42 // Assert.IsInstanceOf<Tizen.NUI.EXaml.OtherAction>(testingTarget, "Should be an instance of OtherAction type.");
44 // tlog.Debug(tag, $"EXamlOtherActionConstructor END (OK)");
49 //[Description("OtherAction Init.")]
50 //[Property("SPEC", "Tizen.NUI.EXaml.OtherAction.Init M")]
51 //[Property("SPEC_URL", "-")]
52 //[Property("CRITERIA", "MR")]
53 //[Property("AUTHOR", "guowei.wang@samsung.com")]
54 //public void EXamlOtherActionInit()
56 // tlog.Debug(tag, $"EXamlOtherActionInit START");
58 // var testingTarget = new Tizen.NUI.EXaml.OtherAction(new Tizen.NUI.EXaml.GlobalDataList(), null);
59 // Assert.IsNotNull(testingTarget, "Can't create success object OtherAction");
60 // Assert.IsInstanceOf<Tizen.NUI.EXaml.OtherAction>(testingTarget, "Should be an instance of OtherAction type.");
64 // testingTarget.Init();
66 // catch (Exception e)
68 // tlog.Debug(tag, e.Message.ToString());
69 // Assert.Fail("Caught Exception : Failed!");
72 // tlog.Debug(tag, $"EXamlOtherActionInit END (OK)");