Esempio n. 1
0
        public void NUIApplicationTerminatingEventArgsGet()
        {
            tlog.Debug(tag, $"NUIApplicationTerminatingEventArgsGet START");

            var testingTarget = new NUIApplicationTerminatingEventArgs();

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

            var result = testingTarget.Application;

            Assert.IsNull(result);

            tlog.Debug(tag, $"NUIApplicationTerminatingEventArgsGet END (OK)");
        }
Esempio n. 2
0
 private void MyOnTerminating(object sender, NUIApplicationTerminatingEventArgs e)
 {
 }