Class ErrorMessage


  • public class ErrorMessage
    extends java.lang.Object
    The full content of an error message reporting to the user.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private int actualCount  
      private boolean matching  
      private java.lang.String message  
    • Constructor Summary

      Constructors 
      Constructor Description
      ErrorMessage​(boolean matching, java.lang.String message, int actualCount)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void appendTo​(java.lang.StringBuilder buffer, int matches)
      Add the error message to the buffer.
      int getActualCount()
      How many time an expected invocation was actually invoked.
      java.lang.String getMessage()
      The actual invocation and its result.
      boolean isMatching()
      If the actual invocation matched the expected invocation.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • matching

        private final boolean matching
      • message

        private final java.lang.String message
      • actualCount

        private final int actualCount
    • Constructor Detail

      • ErrorMessage

        public ErrorMessage​(boolean matching,
                            java.lang.String message,
                            int actualCount)
    • Method Detail

      • isMatching

        public boolean isMatching()
        If the actual invocation matched the expected invocation. It will be used to write the final error message telling that some recording are matching but were already used.
        Returns:
        if the actual invocation matched the expected invocation
      • getMessage

        public java.lang.String getMessage()
        The actual invocation and its result.
        Returns:
        the actual invocation and its result
      • getActualCount

        public int getActualCount()
        How many time an expected invocation was actually invoked.
        Returns:
        how many time an expected invocation was actually invoked
      • appendTo

        public void appendTo​(java.lang.StringBuilder buffer,
                             int matches)
        Add the error message to the buffer.
        Parameters:
        buffer - the buffer to append to
        matches - how many times an actual invocation matched expected invocation