summaryrefslogtreecommitdiff
path: root/src/cppunit
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2021-10-01 02:48:31 +0800
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2021-10-01 02:48:31 +0800
commit240cb599d739c7d96138588f4a474c637d91e677 (patch)
tree7318ba99d5f5c94bca9438aad238111c8f8b36ea /src/cppunit
parent84237a0161e7867a1313d07cda33aeb99818ddf1 (diff)
downloadcppunit-240cb599d739c7d96138588f4a474c637d91e677.tar.gz
remove a few trailing whitespaces
Diffstat (limited to 'src/cppunit')
-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,