Lines Matching defs:executeJavaScriptAndGetStringResult

113     protected String executeJavaScriptAndGetStringResult(String script) throws Throwable {
128 executeJavaScriptAndGetStringResult("typeof testObject.getBooleanValue()"));
130 executeJavaScriptAndGetStringResult("typeof testObject.getByteValue()"));
133 executeJavaScriptAndGetStringResult("typeof testObject.getCharValue()"));
135 executeJavaScriptAndGetStringResult("typeof testObject.getShortValue()"));
137 executeJavaScriptAndGetStringResult("typeof testObject.getIntValue()"));
139 executeJavaScriptAndGetStringResult("typeof testObject.getLongValue()"));
141 executeJavaScriptAndGetStringResult("typeof testObject.getFloatValue()"));
143 executeJavaScriptAndGetStringResult("typeof testObject.getFloatValueNoDecimal()"));
145 executeJavaScriptAndGetStringResult("typeof testObject.getDoubleValue()"));
147 executeJavaScriptAndGetStringResult("typeof testObject.getDoubleValueNoDecimal()"));
149 executeJavaScriptAndGetStringResult("typeof testObject.getStringValue()"));
151 executeJavaScriptAndGetStringResult("typeof testObject.getEmptyStringValue()"));
154 executeJavaScriptAndGetStringResult("typeof testObject.getNullStringValue()"));
156 executeJavaScriptAndGetStringResult("typeof testObject.getObjectValue()"));
158 executeJavaScriptAndGetStringResult("typeof testObject.getNullObjectValue()"));
160 executeJavaScriptAndGetStringResult("typeof testObject.getCustomTypeValue()"));
162 executeJavaScriptAndGetStringResult("typeof testObject.getVoidValue()"));
185 assertEquals("foo", executeJavaScriptAndGetStringResult("testObject.getStringValue()"));
186 assertEquals("", executeJavaScriptAndGetStringResult("testObject.getEmptyStringValue()"));