Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: include/CppUTest/TestFailure.h
- Revision:
- 1:4769360130ed
- Parent:
- 0:0b799af9d58e
diff -r 0b799af9d58e -r 4769360130ed include/CppUTest/TestFailure.h
--- a/include/CppUTest/TestFailure.h Tue Jan 28 09:27:41 2014 +0000
+++ b/include/CppUTest/TestFailure.h Tue Jun 17 15:52:54 2014 +0100
@@ -122,6 +122,12 @@
LongsEqualFailure(UtestShell* test, const char* fileName, int lineNumber, long expected, long actual);
};
+class UnsignedLongsEqualFailure : public TestFailure
+{
+public:
+ UnsignedLongsEqualFailure(UtestShell* test, const char* fileName, int lineNumber, unsigned long expected, unsigned long actual);
+};
+
class StringEqualFailure : public TestFailure
{
public: