Example #1
0
        public void NUIApplicationPausedEventArgsGet()
        {
            tlog.Debug(tag, $"NUIApplicationPausedEventArgsGet START");

            var testingTarget = new NUIApplicationPausedEventArgs();

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

            var result = testingTarget.Application;

            Assert.IsNull(result);

            tlog.Debug(tag, $"NUIApplicationPausedEventArgsGet END (OK)");
        }
Example #2
0
 private void MyOnPaused(object sender, NUIApplicationPausedEventArgs e)
 {
 }