Searched refs:byteTest (Results 1 – 3 of 3) sorted by relevance
46 private static final byte[] byteTest = new byte[bytesToTest]; field in IOMethodsTest48 for(int i=0; i < byteTest.length ;) {49 byteTest[i]=(byte) i;50 byteTest[i+1]=(byte) -i;121 for (final byte element : byteTest) { in compareWrites()127 aos2.write(byteTest); in compareWrites()131 aos3.write(byteTest, 0, byteTest.length); in compareWrites()
30 private static final byte[] byteTest = new byte[bytesToTest]; field in ArchiveUtilsTest32 for(int i=0; i < byteTest.length ;) {33 byteTest[i]=(byte) i;34 byteTest[i+1]=(byte) -i;
190 final byte byteTest = (byte) 43; in testSingleElementScalarArrays()218 final byte byteValue = UNWRAPPING_READER.readValue(asArray(byteTest), Byte.TYPE); in testSingleElementScalarArrays()219 assertEquals(byteTest, byteValue); in testSingleElementScalarArrays()220 …final Byte byteWrapperValue = UNWRAPPING_READER.readValue(asArray(Byte.valueOf(byteTest)), Byte.cl… in testSingleElementScalarArrays()221 assertEquals(Byte.valueOf(byteTest), byteWrapperValue); in testSingleElementScalarArrays()