summaryrefslogtreecommitdiff
path: root/src/cppunit/Asserter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cppunit/Asserter.cpp')
-rw-r--r--src/cppunit/Asserter.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/cppunit/Asserter.cpp b/src/cppunit/Asserter.cpp
index 9e74f1d..52f8625 100644
--- a/src/cppunit/Asserter.cpp
+++ b/src/cppunit/Asserter.cpp
@@ -23,7 +23,7 @@ Asserter::fail( const Message &message,
}
-void
+void
Asserter::failIf( bool shouldFail,
const Message &message,
const SourceLine &sourceLine )
@@ -33,7 +33,7 @@ Asserter::failIf( bool shouldFail,
}
-void
+void
Asserter::failIf( bool shouldFail,
std::string message,
const SourceLine &sourceLine )
@@ -77,7 +77,7 @@ Asserter::makeExpectedGreaterEqual( const std::string& expectedValue )
return "Expected greater or equal than: " + expectedValue;
}
-std::string
+std::string
Asserter::makeActual( const std::string &actualValue )
{
return "Actual : " + actualValue;
@@ -99,7 +99,7 @@ Asserter::makeMessage( const std::string& expectedMessage,
}
-Message
+Message
Asserter::makeNotEqualMessage( const std::string &expectedValue,
const std::string &actualValue,
const AdditionalMessage &additionalMessage,
@@ -109,7 +109,7 @@ Asserter::makeNotEqualMessage( const std::string &expectedValue,
}
-void
+void
Asserter::failNotEqual( std::string expected,
std::string actual,
const SourceLine &sourceLine,
@@ -180,7 +180,7 @@ Asserter::failNotGreaterEqual( std::string expected,
additionalMessage ),
sourceLine );
}
-void
+void
Asserter::failNotEqualIf( bool shouldFail,
std::string expected,
std::string actual,