Пример #1
0
        public void NUIApplicationResumedEventArgsGet()
        {
            tlog.Debug(tag, $"NUIApplicationResumedEventArgsGet START");

            var testingTarget = new NUIApplicationResumedEventArgs();

            Assert.IsNotNull(testingTarget, "should be not null");
            Assert.IsInstanceOf <NUIApplicationResumedEventArgs>(testingTarget, "should be an instance of testing target class!");

            var result = testingTarget.Application;

            Assert.IsNull(result);

            tlog.Debug(tag, $"NUIApplicationResumedEventArgsGet END (OK)");
        }
Пример #2
0
 private void MyOnResumed(object sender, NUIApplicationResumedEventArgs e)
 {
 }