Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testFromByteArray_withTooLongArrayInputThrowsIllegalArgumentException (0.31 sec)

  1. guava-tests/test/com/google/common/math/PairedStatsTest.java

        assertThrows(IllegalArgumentException.class, () -> PairedStats.fromByteArray(new byte[0]));
      }
    
      public void testFromByteArray_withTooLongArrayInputThrowsIllegalArgumentException() {
        byte[] buffer = MANY_VALUES_PAIRED_STATS.toByteArray();
        byte[] tooLongByteArray =
            ByteBuffer.allocate(buffer.length + 2)
                .order(ByteOrder.LITTLE_ENDIAN)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 03 21:17:33 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/StatsTest.java

      public void testFromByteArray_withEmptyArrayInputThrowsIllegalArgumentException() {
        assertThrows(IllegalArgumentException.class, () -> Stats.fromByteArray(new byte[0]));
      }
    
      public void testFromByteArray_withTooLongArrayInputThrowsIllegalArgumentException() {
        byte[] buffer = MANY_VALUES_STATS_VARARGS.toByteArray();
        byte[] tooLongByteArray =
            ByteBuffer.allocate(buffer.length + 2)
                .order(ByteOrder.LITTLE_ENDIAN)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top