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

            var testingTarget = new InputMethodOptions();

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

            tlog.Debug(tag, testingTarget.IsPassword().ToString());

            testingTarget.Dispose();
            tlog.Debug(tag, $"InputMethodOptionsIsPassword END (OK)");
        }