public void Test_StrInput() { string strValue = "test"; ModalFormHandler = InputBox_btnAccept_StrHandler; GKInputBox.QueryText("caption", "prompt", ref strValue); Assert.AreEqual("input", strValue); }
public bool GetInput(string prompt, ref string value) { bool res = GKInputBox.QueryText(GKData.APP_TITLE, prompt, ref value); return(res && !string.IsNullOrEmpty(value)); }