* @tests java.io.RandomAccessFile#writeByte(int)
*/
public void test_writeByteI() throws IOException {
// Test for method void java.io.RandomAccessFile.writeByte(int)
RandomAccessFile raf = new java.io.RandomAccessFile(fileName, "rw");
raf.writeByte(127);
raf.seek(0);
assertEquals("Incorrect byte read/written", 127, raf.readByte());
raf.close();
}