예제 #1
0
        public void NUIApplicationResetEventArgsGet()
        {
            tlog.Debug(tag, $"NUIApplicationResetEventArgsGet START");

            var testingTarget = new NUIApplicationResetEventArgs();

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

            var result = testingTarget.Application;

            Assert.IsNull(result);

            tlog.Debug(tag, $"NUIApplicationResetEventArgsGet END (OK)");
        }
예제 #2
0
 private void MyOnReset(object sender, NUIApplicationResetEventArgs e)
 {
 }