HomeSort by relevance Sort by last modified time
    Searched refs:BINARY_CONTENTS (Results 1 - 2 of 2) sorted by null

  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/
StubFtpServerIntegrationTest.java 50 private static final byte[] BINARY_CONTENTS = new byte[256];
377 retrCommandHandler.setFileContents(BINARY_CONTENTS);
387 assertEquals("File contents", BINARY_CONTENTS, outputStream.toByteArray());
391 ByteArrayInputStream inputStream = new ByteArrayInputStream(BINARY_CONTENTS);
396 assertEquals("File contents", BINARY_CONTENTS, contents);
531 for (int i = 0; i < BINARY_CONTENTS.length; i++) {
532 BINARY_CONTENTS[i] = (byte) i;
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/
StubFtpServerIntegrationTest.java 62 private static final byte[] BINARY_CONTENTS = new byte[256];
403 retrCommandHandler.setFileContents(BINARY_CONTENTS);
413 assertEquals("File contents", BINARY_CONTENTS, outputStream.toByteArray());
417 ByteArrayInputStream inputStream = new ByteArrayInputStream(BINARY_CONTENTS);
422 assertEquals("File contents", BINARY_CONTENTS, contents);
580 for (int i = 0; i < BINARY_CONTENTS.length; i++) {
581 BINARY_CONTENTS[i] = (byte) i;

Completed in 313 milliseconds