| javax.crypto.CipherOutputStreamTest
CipherOutputStreamTest | public class CipherOutputStreamTest extends TestCase (Code) | | |
testCipherOutputStream | public void testCipherOutputStream() throws Exception(Code) | | CipherOutputStream(OutputStream os) method testing. Tests that
CipherOutputStream uses NullCipher if Cipher is not specified
in the constructor.
|
testClose | public void testClose() throws Exception(Code) | | close() method testing. Tests that the method calls the close() method of
the underlying input stream.
|
testFlush | public void testFlush() throws Exception(Code) | | flush() method testing. Tests that method flushes the data to the
underlying output stream.
|
testWrite1 | public void testWrite1() throws Exception(Code) | | write(int b) method testing. Tests that method writes correct values to
the underlying output stream.
|
testWrite2 | public void testWrite2() throws Exception(Code) | | write(byte[] b) method testing. Tests that method writes correct values
to the underlying output stream.
|
testWrite3 | public void testWrite3() throws Exception(Code) | | write(byte[] b, int off, int len) method testing.
|
|
|