Package java.io

Examples of java.io.RandomAccessFile.readBoolean()


    public void test_writeBooleanZ() throws IOException {
        // Test for method void java.io.RandomAccessFile.writeBoolean(boolean)
        RandomAccessFile raf = new java.io.RandomAccessFile(fileName, "rw");
        raf.writeBoolean(true);
        raf.seek(0);
        assertTrue("Incorrect boolean read/written", raf.readBoolean());
        raf.close();
    }

    /**
     * @tests java.io.RandomAccessFile#writeByte(int)
View Full Code Here


    public void test_writeBooleanZ() throws IOException {
        // Test for method void java.io.RandomAccessFile.writeBoolean(boolean)
        RandomAccessFile raf = new java.io.RandomAccessFile(fileName, "rw");
        raf.writeBoolean(true);
        raf.seek(0);
        assertTrue("Incorrect boolean read/written", raf.readBoolean());
        raf.close();
    }

    /**
     * @tests java.io.RandomAccessFile#writeByte(int)
View Full Code Here

    public void test_readBoolean() throws IOException {
        // Test for method boolean java.io.RandomAccessFile.readBoolean()
        RandomAccessFile raf = new java.io.RandomAccessFile(fileName, "rw");
        raf.writeBoolean(true);
        raf.seek(0);
        assertTrue("Incorrect boolean read/written", raf.readBoolean());
        raf.close();
    }

    /**
     * @tests java.io.RandomAccessFile#readByte()
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.