You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The file path is org.zkoss.idom.Verifier.
In this test case we created, pass int0=-2147483648 into the function whose api is isXMLCharacter. In this api, an exception will generated when the array size is established as -2147483648.
test code:
int int0 = -2147483648;
org.zkoss.idom.Verifier.isXMLCharacter(int0);
test results:
java.lang.ArrayIndexOutOfBoundsException: Index -2147483648 out of bounds for length 65536
at org.zkoss.idom.Verifier.isXMLCharacter(Verifier.java:536)
at org.zkoss.idom.Verifier_Test.test_isXMLCharacter_2_32(Verifier_Test.java:373)
The text was updated successfully, but these errors were encountered:
The file path is org.zkoss.idom.Verifier.
In this test case we created, pass int0=-2147483648 into the function whose api is isXMLCharacter. In this api, an exception will generated when the array size is established as -2147483648.
test code:
test results:
The text was updated successfully, but these errors were encountered: