Exemplo n.º 1
0
        public void NUIApplicationLanguageChangedEventArgsGet()
        {
            tlog.Debug(tag, $"NUIApplicationLanguageChangedEventArgsGet START");

            var testingTarget = new NUIApplicationLanguageChangedEventArgs();

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

            var result = testingTarget.Application;

            Assert.IsNull(result);

            tlog.Debug(tag, $"NUIApplicationLanguageChangedEventArgsGet END (OK)");
        }
Exemplo n.º 2
0
 private void MyOnLanguageChanged(object sender, NUIApplicationLanguageChangedEventArgs e)
 {
 }