Ejemplo n.º 1
0
        public void NUIEventTypeImplicit()
        {
            tlog.Debug(tag, $"NUIEventTypeImplicit START");

            NUIEventType nuiEventType = "TimeTick";

            Assert.IsInstanceOf <NUIEventType>(nuiEventType, "Should be an instance of NUIEventType type.");

            tlog.Debug(tag, $"NUIEventTypeImplicit END (OK)");
        }
Ejemplo n.º 2
0
        public void NUIEventType_INIT()
        {
            tlog.Debug(tag, $"NUIEventTypeConstructor START");

            var nuiEventType = new NUIEventType("TimeTick");

            Assert.IsNotNull(nuiEventType, "Can't create success object NUIEventType");
            Assert.IsInstanceOf <NUIEventType>(nuiEventType, "Should be an instance of NUIEventType type.");

            tlog.Debug(tag, $"NUIEventTypeConstructor END (OK)");
        }