Searched defs:testStr (Results 1 - 1 of 1) sorted by relevance

/art/test/082-inline-execute/src/
H A DMain.java128 String testStr = "Now is the time to test some stuff";
130 Assert.assertEquals(testStr.length() - 1, 33); // 33 = testStr.length()-1 as a constant.
131 Assert.assertEquals('f', testStr.charAt(33));
133 test_String_charAt(testStr, 'N', 'o', ' ', 'f');
134 test_String_charAt(testStr.substring(3,15), ' ', 'i', 'm', 'e');
136 public static void test_String_charAt(String testStr, char a, char b, char c, char d) { argument
137 Assert.assertEquals(a, testStr.charAt(0));
138 Assert.assertEquals(b, testStr.charAt(1));
139 Assert.assertEquals(c, testStr
146 test_String_charAtExc(String testStr) argument
209 test_String_charAtExc2(String testStr) argument
222 test_String_charAtExc3(String testStr) argument
226 test_String_charAtExc4(String testStr) argument
[all...]

Completed in 64 milliseconds