public void GetDescriptionEventArgsDescription()
        {
            tlog.Debug(tag, $"GetDescriptionEventArgsDescription START");

            var testingTarget = new GetDescriptionEventArgs();

            Assert.IsNotNull(testingTarget, "Can't create success object GetDescriptionEventArgs");
            Assert.IsInstanceOf <GetDescriptionEventArgs>(testingTarget, "Should be an instance of GetDescriptionEventArgs type.");

            testingTarget.Description = "description";
            tlog.Debug(tag, "Description : " + testingTarget.Description);

            tlog.Debug(tag, $"GetDescriptionEventArgsDescription END (OK)");
        }
 private void OnAccessibilityDescriptionRequested(object sender, GetDescriptionEventArgs e)
 {
 }