Class BinaryDiffResult

java.lang.Object
org.assertj.core.internal.BinaryDiffResult

public class BinaryDiffResult extends Object
Value class to hold the result of comparing two binary streams.
  • Field Details

    • EOF

      private static final int EOF
      See Also:
    • offset

      public final int offset
    • expected

      public final String expected
    • actual

      public final String actual
  • Constructor Details

    • BinaryDiffResult

      public BinaryDiffResult(int offset, int expected, int actual)
      Builds a new instance.
      Parameters:
      offset - the offset at which the difference occurred.
      expected - the expected byte as an int in the range 0 to 255, or -1 for EOF.
      actual - the actual byte in the same format.
  • Method Details

    • hasNoDiff

      public boolean hasNoDiff()
    • hasDiff

      public boolean hasDiff()
    • noDiff

      public static BinaryDiffResult noDiff()
    • describe

      private String describe(int b)