ArrayTest.java | 46 try { Array.getBoolean(bytes, 0); fail(); } catch (IllegalArgumentException expected) {} method 47 try { Array.getBoolean(chars, 0); fail(); } catch (IllegalArgumentException expected) {} method 48 try { Array.getBoolean(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} method 49 try { Array.getBoolean(floats, 0); fail(); } catch (IllegalArgumentException expected) {} method 50 try { Array.getBoolean(ints, 0); fail(); } catch (IllegalArgumentException expected) {} method 51 try { Array.getBoolean(longs, 0); fail(); } catch (IllegalArgumentException expected) {} method 52 try { Array.getBoolean(shorts, 0); fail(); } catch (IllegalArgumentException expected) {} method 53 try { Array.getBoolean(null, 0); fail(); } catch (NullPointerException expected) {} method 57 try { Array.getByte(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} method 59 try { Array.getByte(chars, 0); fail(); } catch (IllegalArgumentException expected) { method 60 try { Array.getByte(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} method 61 try { Array.getByte(floats, 0); fail(); } catch (IllegalArgumentException expected) {} method 62 try { Array.getByte(ints, 0); fail(); } catch (IllegalArgumentException expected) {} method 63 try { Array.getByte(longs, 0); fail(); } catch (IllegalArgumentException expected) {} method 64 try { Array.getByte(shorts, 0); fail(); } catch (IllegalArgumentException expected) {} method 65 try { Array.getByte(null, 0); fail(); } catch (NullPointerException expected) {} method 69 try { Array.getChar(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} method 70 try { Array.getChar(bytes, 0); fail(); } catch (IllegalArgumentException expected) {} method 72 try { Array.getChar(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} method 73 try { Array.getChar(floats, 0); fail(); } catch (IllegalArgumentException expected) {} method 74 try { Array.getChar(ints, 0); fail(); } catch (IllegalArgumentException expected) {} method 75 try { Array.getChar(longs, 0); fail(); } catch (IllegalArgumentException expected) {} method 76 try { Array.getChar(shorts, 0); fail(); } catch (IllegalArgumentException expected) {} method 77 try { Array.getChar(null, 0); fail(); } catch (NullPointerException expected) {} method 81 try { Array.getDouble(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} method 89 try { Array.getDouble(null, 0); fail(); } catch (NullPointerException expected) {} method 93 try { Array.getFloat(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} method 97 try { Array.getFloat(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} method 101 try { Array.getFloat(null, 0); fail(); } catch (NullPointerException expected) {} method 105 try { Array.getInt(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} method 108 try { Array.getInt(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} method 109 try { Array.getInt(floats, 0); fail(); } catch (IllegalArgumentException expected) {} method 111 try { Array.getInt(longs, 0); fail(); } catch (IllegalArgumentException expected) {} method 113 try { Array.getInt(null, 0); fail(); } catch (NullPointerException expected) {} method 117 try { Array.getLong(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} method 120 try { Array.getLong(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} method 121 try { Array.getLong(floats, 0); fail(); } catch (IllegalArgumentException expected) {} method 125 try { Array.getLong(null, 0); fail(); } catch (NullPointerException expected) {} method 129 try { Array.getShort(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} method 131 try { Array.getShort(chars, 0); fail(); } catch (IllegalArgumentException expected) {} method 132 try { Array.getShort(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} method 133 try { Array.getShort(floats, 0); fail(); } catch (IllegalArgumentException expected) {} method 134 try { Array.getShort(ints, 0); fail(); } catch (IllegalArgumentException expected) {} method 135 try { Array.getShort(longs, 0); fail(); } catch (IllegalArgumentException expected) {} method 137 try { Array.getShort(null, 0); fail(); } catch (NullPointerException expected) {} method 142 try { Array.setBoolean(bytes, 0, true); fail(); } catch (IllegalArgumentException expected) {} method 143 try { Array.setBoolean(chars, 0, true); fail(); } catch (IllegalArgumentException expected) {} method 144 try { Array.setBoolean(doubles, 0, true); fail(); } catch (IllegalArgumentException expected) {} method 145 try { Array.setBoolean(floats, 0, true); fail(); } catch (IllegalArgumentException expected) {} method 146 try { Array.setBoolean(ints, 0, true); fail(); } catch (IllegalArgumentException expected) {} method 147 try { Array.setBoolean(longs, 0, true); fail(); } catch (IllegalArgumentException expected) {} method 148 try { Array.setBoolean(shorts, 0, true); fail(); } catch (IllegalArgumentException expected) {} method 149 try { Array.setBoolean(null, 0, true); fail(); } catch (NullPointerException expected) {} method 153 try { Array.setByte(booleans, 0, bytes[0]); fail(); } catch (IllegalArgumentException expected) {} method 155 try { Array.setByte(chars, 0, bytes[0]); fail(); } catch (IllegalArgumentException expected) {} method 161 try { Array.setByte(null, 0, bytes[0]); fail(); } catch (NullPointerException expected) {} method 165 try { Array.setChar(booleans, 0, chars[0]); fail(); } catch (IllegalArgumentException expected) {} method 166 try { Array.setChar(bytes, 0, chars[0]); fail(); } catch (IllegalArgumentException expected) {} method 172 try { Array.setChar(shorts, 0, chars[0]); fail(); } catch (IllegalArgumentException expected) {} method 173 try { Array.setChar(null, 0, chars[0]); fail(); } catch (NullPointerException expected) {} method 177 try { Array.setDouble(booleans, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} method 178 try { Array.setDouble(bytes, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} method 179 try { Array.setDouble(chars, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} method 181 try { Array.setDouble(floats, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} method 182 try { Array.setDouble(ints, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} method 183 try { Array.setDouble(longs, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} method 184 try { Array.setDouble(shorts, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} method 185 try { Array.setDouble(null, 0, doubles[0]); fail(); } catch (NullPointerException expected) {} method 189 try { Array.setFloat(booleans, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {} method 190 try { Array.setFloat(bytes, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {} method 191 try { Array.setFloat(chars, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {} method 194 try { Array.setFloat(ints, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {} method 195 try { Array.setFloat(longs, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {} method 196 try { Array.setFloat(shorts, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {} method 197 try { Array.setFloat(null, 0, floats[0]); fail(); } catch (NullPointerException expected) {} method 201 try { Array.setInt(booleans, 0, ints[0]); fail(); } catch (IllegalArgumentException expected) {} method 202 try { Array.setInt(bytes, 0, ints[0]); fail(); } catch (IllegalArgumentException expected) {} method 203 try { Array.setInt(chars, 0, ints[0]); fail(); } catch (IllegalArgumentException expected) {} method 208 try { Array.setInt(shorts, 0, ints[0]); fail(); } catch (IllegalArgumentException expected) {} method 209 try { Array.setInt(null, 0, ints[0]); fail(); } catch (NullPointerException expected) {} method 213 try { Array.setLong(booleans, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} method 214 try { Array.setLong(bytes, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} method 215 try { Array.setLong(chars, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} method 218 try { Array.setLong(ints, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} method 220 try { Array.setLong(shorts, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} method 221 try { Array.setLong(null, 0, longs[0]); fail(); } catch (NullPointerException expected) {} method 225 try { Array.setShort(booleans, 0, shorts[0]); fail(); } catch (IllegalArgumentException expected) {} method 226 try { Array.setShort(bytes, 0, shorts[0]); fail(); } catch (IllegalArgumentException expected) {} method 227 try { Array.setShort(chars, 0, shorts[0]); fail(); } catch (IllegalArgumentException expected) {} method 233 try { Array.setShort(null, 0, shorts[0]); fail(); } catch (NullPointerException expected) {} method [all...] |