Package org.easymock.internal
Class ErrorMessage
- java.lang.Object
-
- org.easymock.internal.ErrorMessage
-
public class ErrorMessage extends java.lang.ObjectThe full content of an error message reporting to the user.
-
-
Field Summary
Fields Modifier and Type Field Description private intactualCountprivate booleanmatchingprivate java.lang.Stringmessage
-
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 voidappendTo(java.lang.StringBuilder buffer, int matches)Add the error message to the buffer.intgetActualCount()How many time an expected invocation was actually invoked.java.lang.StringgetMessage()The actual invocation and its result.booleanisMatching()If the actual invocation matched the expected invocation.
-
-
-
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 tomatches- how many times an actual invocation matched expected invocation
-
-