public void NUIApplicationInitEventArgsGet() { tlog.Debug(tag, $"NUIApplicationInitEventArgsGet START"); var testingTarget = new NUIApplicationInitEventArgs(); Assert.IsNotNull(testingTarget, "should be not null"); Assert.IsInstanceOf <NUIApplicationInitEventArgs>(testingTarget, "should be an instance of testing target class!"); var result = testingTarget.Application; Assert.IsNull(result); tlog.Debug(tag, $"NUIApplicationInitEventArgsGet END (OK)"); }
private void MyOnInitialized(object sender, NUIApplicationInitEventArgs e) { }