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

            var testingTarget = new NUIApplicationRegionChangedEventArgs();

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

            var result = testingTarget.Application;

            Assert.IsNull(result);

            tlog.Debug(tag, $"NUIApplicationRegionChangedEventArgsGet END (OK)");
        }
Beispiel #2
0
 private void MyOnRegionChanged(object sender, NUIApplicationRegionChangedEventArgs e)
 {
 }