Message associated to an
Exception.
More...
#include <Message.h>
Inheritance diagram for Message:
List of all members.
Public Member Functions
Message (const std::string &shortDescription)
Message (const std::string &shortDescription, const std::string &detail1)
Message (const std::string &shortDescription, const std::string &detail1, const std::string &detail2)
Message (const std::string &shortDescription, const std::string &detail1, const std::string &detail2, const std::string &detail3)
Returns the short description.
Returns the number of detail string.
Returns the detail at the specified index.
Returns a string that represents a list of the detail strings.
Removes all detail strings.
Adds a single detail string.
void
addDetail (const std::string &detail1, const std::string &detail2)
Adds two detail strings.
void
addDetail (const std::string &detail1, const std::string &detail2, const std::string &detail3)
Adds three detail strings.
Adds the detail strings of the specified message.
Sets the short description.
Tests if a message is identical to another one.
Tests if a message is different from another one.
Private Types
typedef CppUnitDeque< std::string >
Details
Private Attributes
Detailed Description
Message associated to an
Exception.
A message is composed of two items:
- a short description (~20/30 characters)
- a list of detail strings
The short description is used to indicate how the detail strings should be interpreted. It usually indicates the failure types, such as "assertion failed", "forced failure", "unexpected exception caught", "equality assertion failed"... It should not contains new line character (
).
Detail strings are used to provide more information about the failure. It can contains the asserted expression, the expected and actual values in an equality assertion, some addional messages... Detail strings can contains new line characters (
).
Member Typedef Documentation
Constructor & Destructor Documentation
CPPUNIT_NS_BEGIN Message::Message
(
)
Message::Message
(
const
Message &
other
)
Message::Message
(
const std::string &
shortDescription
)
[explicit]
Message::Message
(
const std::string &
shortDescription,
const std::string &
detail1
)
Message::Message
(
const std::string &
shortDescription,
const std::string &
detail1,
const std::string &
detail2
)
Message::Message
(
const std::string &
shortDescription,
const std::string &
detail1,
const std::string &
detail2,
const std::string &
detail3
)
Member Function Documentation
void Message::addDetail
(
const
Message &
message
)
Adds the detail strings of the specified message.
- Parameters:
-
message All the detail strings of this message are added to this one.
void Message::addDetail
(
const std::string &
detail1,
const std::string &
detail2,
const std::string &
detail3
)
Adds three detail strings.
- Parameters:
-
detail1 Detail string to add.
detail2 Detail string to add.
detail3 Detail string to add.
void Message::addDetail
(
const std::string &
detail1,
const std::string &
detail2
)
Adds two detail strings.
- Parameters:
-
detail1 Detail string to add.
detail2 Detail string to add.
void Message::addDetail
(
const std::string &
detail
)
Adds a single detail string.
- Parameters:
-
detail Detail string to add.
void Message::clearDetails
(
)
Removes all detail strings.
std::string Message::detailAt
(
int
index
)
const
Returns the detail at the specified index.
- Parameters:
-
index Zero based index of the detail string to return.
- Returns:
- Detail string at the specified index.
- Exceptions:
-
int Message::detailCount
(
)
const
Returns the number of detail string.
- Returns:
- Number of detail string.
std::string Message::details
(
)
const
Returns a string that represents a list of the detail strings.
Example:
Message message( "not equal", "Expected: 3", "Actual: 7" );
std::string details = message.details();
// details contains:
// "- Expected: 3\n- Actual: 7\n"
- Returns:
- A string that is a concatenation of all the detail strings. Each detail string is prefixed with '- ' and suffixed with '
' before being concatenated to the other.
bool Message::operator!=
(
const
Message &
other
)
const
Tests if a message is different from another one.
- Parameters:
-
other Message this message is compared to.
- Returns:
true
if the two message are not identical, false
otherwise.
bool Message::operator==
(
const
Message &
other
)
const
Tests if a message is identical to another one.
- Parameters:
-
other Message this message is compared to.
- Returns:
true
if the two message are identical, false
otherwise.
void Message::setShortDescription
(
const std::string &
shortDescription
)
Sets the short description.
- Parameters:
-
shortDescription New short description.
const std::string & Message::shortDescription
(
)
const
Returns the short description.
- Returns:
- Short description.
Member Data Documentation
The documentation for this class was generated from the following files: