diff --git a/CppUnit/include/CppUnit/CppUnitException.h b/CppUnit/include/CppUnit/CppUnitException.h index 27c50a3cb..902354256 100644 --- a/CppUnit/include/CppUnit/CppUnitException.h +++ b/CppUnit/include/CppUnit/CppUnitException.h @@ -68,17 +68,17 @@ inline CppUnitException::CppUnitException(const CppUnitException& other): except } -inline CppUnitException::CppUnitException (const std::string& message, long lineNumber, const std::string& fileName): _message(message), _lineNumber(lineNumber), _data1lineNumber(CPPUNIT_UNKNOWNLINENUMBER), _data2lineNumber(CPPUNIT_UNKNOWNLINENUMBER), _fileName(fileName) +inline CppUnitException::CppUnitException (const std::string& message, long exceptionLineNumber, const std::string& rFileName): _message(message), _lineNumber(exceptionLineNumber), _data1lineNumber(CPPUNIT_UNKNOWNLINENUMBER), _data2lineNumber(CPPUNIT_UNKNOWNLINENUMBER), _fileName(rFileName) { } -inline CppUnitException::CppUnitException (const std::string& message, long lineNumber, long data1lineNumber, const std::string& fileName): _message(message), _lineNumber(lineNumber), _data1lineNumber(data1lineNumber), _data2lineNumber(CPPUNIT_UNKNOWNLINENUMBER), _fileName(fileName) +inline CppUnitException::CppUnitException (const std::string& message, long exceptionLineNumber, long data1lineNumber, const std::string& rFileName): _message(message), _lineNumber(exceptionLineNumber), _data1lineNumber(data1lineNumber), _data2lineNumber(CPPUNIT_UNKNOWNLINENUMBER), _fileName(rFileName) { } -inline CppUnitException::CppUnitException (const std::string& message, long lineNumber, long data1lineNumber, long data2lineNumber, const std::string& fileName): _message(message), _lineNumber(lineNumber), _data1lineNumber(data1lineNumber), _data2lineNumber(data2lineNumber), _fileName(fileName) +inline CppUnitException::CppUnitException (const std::string& message, long exceptionLineNumber, long data1lineNumber, long data2lineNumber, const std::string& rFileName): _message(message), _lineNumber(exceptionLineNumber), _data1lineNumber(data1lineNumber), _data2lineNumber(data2lineNumber), _fileName(rFileName) { } diff --git a/CppUnit/include/CppUnit/TestCaller.h b/CppUnit/include/CppUnit/TestCaller.h index 1c555939d..ef2909468 100644 --- a/CppUnit/include/CppUnit/TestCaller.h +++ b/CppUnit/include/CppUnit/TestCaller.h @@ -56,10 +56,10 @@ class TestCaller: public TestCase typedef void (Fixture::*TestMethod)(); public: - TestCaller(const std::string& name, TestMethod test): - TestCase(name), + TestCaller(const std::string& rName, TestMethod test): + TestCase(rName), _test(test), - _fixture(new Fixture(name)) + _fixture(new Fixture(rName)) { } diff --git a/CppUnit/include/CppUnit/TestCase.h b/CppUnit/include/CppUnit/TestCase.h index 60b07b811..30188e9ee 100644 --- a/CppUnit/include/CppUnit/TestCase.h +++ b/CppUnit/include/CppUnit/TestCase.h @@ -173,7 +173,7 @@ protected: // Constructs a test case -inline TestCase::TestCase(const std::string& name): _name (name) +inline TestCase::TestCase(const std::string& rName): _name (rName) { } diff --git a/CppUnit/include/CppUnit/TestFailure.h b/CppUnit/include/CppUnit/TestFailure.h index c1f845d72..be54d7e4e 100644 --- a/CppUnit/include/CppUnit/TestFailure.h +++ b/CppUnit/include/CppUnit/TestFailure.h @@ -52,7 +52,7 @@ protected: // Constructs a TestFailure with the given test and exception. -inline TestFailure::TestFailure(Test* failedTest, CppUnitException* thrownException): _failedTest(failedTest), _thrownException(thrownException) +inline TestFailure::TestFailure(Test* pFailedTest, CppUnitException* pThrownException): _failedTest(pFailedTest), _thrownException(pThrownException) { } diff --git a/Foundation/samples/NotificationQueue/src/NotificationQueue.cpp b/Foundation/samples/NotificationQueue/src/NotificationQueue.cpp index d6a5af3c3..e1412ec4f 100644 --- a/Foundation/samples/NotificationQueue/src/NotificationQueue.cpp +++ b/Foundation/samples/NotificationQueue/src/NotificationQueue.cpp @@ -39,8 +39,8 @@ class WorkNotification: public Notification public: typedef AutoPtr Ptr; - WorkNotification(int data): - _data(data) + WorkNotification(int workData): + _data(workData) { } diff --git a/Foundation/testsuite/src/ActiveDispatcherTest.cpp b/Foundation/testsuite/src/ActiveDispatcherTest.cpp index d59bb6b4e..caa721d67 100644 --- a/Foundation/testsuite/src/ActiveDispatcherTest.cpp +++ b/Foundation/testsuite/src/ActiveDispatcherTest.cpp @@ -90,7 +90,7 @@ namespace } -ActiveDispatcherTest::ActiveDispatcherTest(const std::string& name): CppUnit::TestCase(name) +ActiveDispatcherTest::ActiveDispatcherTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ActiveMethodTest.cpp b/Foundation/testsuite/src/ActiveMethodTest.cpp index 5d28ee330..15eb7b380 100644 --- a/Foundation/testsuite/src/ActiveMethodTest.cpp +++ b/Foundation/testsuite/src/ActiveMethodTest.cpp @@ -92,7 +92,7 @@ namespace } -ActiveMethodTest::ActiveMethodTest(const std::string& name): CppUnit::TestCase(name) +ActiveMethodTest::ActiveMethodTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ActivityTest.cpp b/Foundation/testsuite/src/ActivityTest.cpp index 8c0bce179..cf67d14d6 100644 --- a/Foundation/testsuite/src/ActivityTest.cpp +++ b/Foundation/testsuite/src/ActivityTest.cpp @@ -60,7 +60,7 @@ namespace } -ActivityTest::ActivityTest(const std::string& name): CppUnit::TestCase(name) +ActivityTest::ActivityTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/AnyTest.cpp b/Foundation/testsuite/src/AnyTest.cpp index cd2b0da6e..87102d9a1 100644 --- a/Foundation/testsuite/src/AnyTest.cpp +++ b/Foundation/testsuite/src/AnyTest.cpp @@ -42,7 +42,7 @@ public: }; -AnyTest::AnyTest(const std::string& name): CppUnit::TestCase(name) +AnyTest::AnyTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ArrayTest.cpp b/Foundation/testsuite/src/ArrayTest.cpp index 55c492731..30e94ca49 100644 --- a/Foundation/testsuite/src/ArrayTest.cpp +++ b/Foundation/testsuite/src/ArrayTest.cpp @@ -18,7 +18,7 @@ #include #include -ArrayTest::ArrayTest(const std::string& name): CppUnit::TestCase(name) +ArrayTest::ArrayTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/AutoPtrTest.cpp b/Foundation/testsuite/src/AutoPtrTest.cpp index 31717aeab..7332ffc00 100644 --- a/Foundation/testsuite/src/AutoPtrTest.cpp +++ b/Foundation/testsuite/src/AutoPtrTest.cpp @@ -67,7 +67,7 @@ namespace } -AutoPtrTest::AutoPtrTest(const std::string& name): CppUnit::TestCase(name) +AutoPtrTest::AutoPtrTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/AutoReleasePoolTest.cpp b/Foundation/testsuite/src/AutoReleasePoolTest.cpp index 6db568d12..e3d7934bd 100644 --- a/Foundation/testsuite/src/AutoReleasePoolTest.cpp +++ b/Foundation/testsuite/src/AutoReleasePoolTest.cpp @@ -65,7 +65,7 @@ namespace } -AutoReleasePoolTest::AutoReleasePoolTest(const std::string& name): CppUnit::TestCase(name) +AutoReleasePoolTest::AutoReleasePoolTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/Base32Test.cpp b/Foundation/testsuite/src/Base32Test.cpp index 4bc1c33d4..6fca5e3d6 100644 --- a/Foundation/testsuite/src/Base32Test.cpp +++ b/Foundation/testsuite/src/Base32Test.cpp @@ -24,7 +24,7 @@ using Poco::Base32Decoder; using Poco::DataFormatException; -Base32Test::Base32Test(const std::string& name): CppUnit::TestCase(name) +Base32Test::Base32Test(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/Base64Test.cpp b/Foundation/testsuite/src/Base64Test.cpp index f5af89e09..0d91ebedb 100644 --- a/Foundation/testsuite/src/Base64Test.cpp +++ b/Foundation/testsuite/src/Base64Test.cpp @@ -24,7 +24,7 @@ using Poco::Base64Decoder; using Poco::DataFormatException; -Base64Test::Base64Test(const std::string& name): CppUnit::TestCase(name) +Base64Test::Base64Test(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/BasicEventTest.cpp b/Foundation/testsuite/src/BasicEventTest.cpp index f593c1a79..ef59f5dc1 100644 --- a/Foundation/testsuite/src/BasicEventTest.cpp +++ b/Foundation/testsuite/src/BasicEventTest.cpp @@ -27,7 +27,7 @@ using namespace Poco; #define LARGEINC 100 -BasicEventTest::BasicEventTest(const std::string& name): CppUnit::TestCase(name) +BasicEventTest::BasicEventTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/BinaryReaderWriterTest.cpp b/Foundation/testsuite/src/BinaryReaderWriterTest.cpp index b9f689908..13bfeb515 100644 --- a/Foundation/testsuite/src/BinaryReaderWriterTest.cpp +++ b/Foundation/testsuite/src/BinaryReaderWriterTest.cpp @@ -30,7 +30,7 @@ using Poco::Int64; using Poco::UInt64; -BinaryReaderWriterTest::BinaryReaderWriterTest(const std::string& name): CppUnit::TestCase(name) +BinaryReaderWriterTest::BinaryReaderWriterTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ByteOrderTest.cpp b/Foundation/testsuite/src/ByteOrderTest.cpp index f34cb8616..ca789d5b1 100644 --- a/Foundation/testsuite/src/ByteOrderTest.cpp +++ b/Foundation/testsuite/src/ByteOrderTest.cpp @@ -27,7 +27,7 @@ using Poco::UInt64; #endif -ByteOrderTest::ByteOrderTest(const std::string& name): CppUnit::TestCase(name) +ByteOrderTest::ByteOrderTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ChannelTest.cpp b/Foundation/testsuite/src/ChannelTest.cpp index 270d63a05..89ec30926 100644 --- a/Foundation/testsuite/src/ChannelTest.cpp +++ b/Foundation/testsuite/src/ChannelTest.cpp @@ -47,7 +47,7 @@ public: }; -ChannelTest::ChannelTest(const std::string& name): CppUnit::TestCase(name) +ChannelTest::ChannelTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ClassLoaderTest.cpp b/Foundation/testsuite/src/ClassLoaderTest.cpp index a0e24104f..ae683fb1e 100644 --- a/Foundation/testsuite/src/ClassLoaderTest.cpp +++ b/Foundation/testsuite/src/ClassLoaderTest.cpp @@ -27,7 +27,7 @@ using Poco::NotFoundException; using Poco::InvalidAccessException; -ClassLoaderTest::ClassLoaderTest(const std::string& name): CppUnit::TestCase(name) +ClassLoaderTest::ClassLoaderTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ClockTest.cpp b/Foundation/testsuite/src/ClockTest.cpp index 6adbf72f3..98c2fc77b 100644 --- a/Foundation/testsuite/src/ClockTest.cpp +++ b/Foundation/testsuite/src/ClockTest.cpp @@ -22,7 +22,7 @@ using Poco::Clock; using Poco::Thread; -ClockTest::ClockTest(const std::string& name): CppUnit::TestCase(name) +ClockTest::ClockTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ConditionTest.cpp b/Foundation/testsuite/src/ConditionTest.cpp index 9f341a6ce..40bc3b186 100644 --- a/Foundation/testsuite/src/ConditionTest.cpp +++ b/Foundation/testsuite/src/ConditionTest.cpp @@ -92,7 +92,7 @@ namespace } -ConditionTest::ConditionTest(const std::string& name): CppUnit::TestCase(name) +ConditionTest::ConditionTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/CoreTest.cpp b/Foundation/testsuite/src/CoreTest.cpp index fe1a73dca..160f31d99 100644 --- a/Foundation/testsuite/src/CoreTest.cpp +++ b/Foundation/testsuite/src/CoreTest.cpp @@ -112,7 +112,7 @@ struct Large #define ENABLE_BUGCHECK_TEST 0 -CoreTest::CoreTest(const std::string& name): CppUnit::TestCase(name) +CoreTest::CoreTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/CountingStreamTest.cpp b/Foundation/testsuite/src/CountingStreamTest.cpp index be7ade9e3..66a8a789d 100644 --- a/Foundation/testsuite/src/CountingStreamTest.cpp +++ b/Foundation/testsuite/src/CountingStreamTest.cpp @@ -21,7 +21,7 @@ using Poco::CountingInputStream; using Poco::CountingOutputStream; -CountingStreamTest::CountingStreamTest(const std::string& name): CppUnit::TestCase(name) +CountingStreamTest::CountingStreamTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/DateTimeFormatterTest.cpp b/Foundation/testsuite/src/DateTimeFormatterTest.cpp index f6b4b11b1..f77ec4cba 100644 --- a/Foundation/testsuite/src/DateTimeFormatterTest.cpp +++ b/Foundation/testsuite/src/DateTimeFormatterTest.cpp @@ -25,8 +25,8 @@ using Poco::DateTimeFormat; using Poco::DateTimeFormatter; -DateTimeFormatterTest::DateTimeFormatterTest(const std::string& name) - : CppUnit::TestCase(name) +DateTimeFormatterTest::DateTimeFormatterTest(const std::string& rName) + : CppUnit::TestCase(rName) { // Linker regresion SF #3288584 std::string message; diff --git a/Foundation/testsuite/src/DateTimeParserTest.cpp b/Foundation/testsuite/src/DateTimeParserTest.cpp index 57322c3e3..6a695a533 100644 --- a/Foundation/testsuite/src/DateTimeParserTest.cpp +++ b/Foundation/testsuite/src/DateTimeParserTest.cpp @@ -27,7 +27,7 @@ using Poco::Timestamp; using Poco::SyntaxException; -DateTimeParserTest::DateTimeParserTest(const std::string& name): CppUnit::TestCase(name) +DateTimeParserTest::DateTimeParserTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/DateTimeTest.cpp b/Foundation/testsuite/src/DateTimeTest.cpp index 969e7bc9b..4b416eed5 100644 --- a/Foundation/testsuite/src/DateTimeTest.cpp +++ b/Foundation/testsuite/src/DateTimeTest.cpp @@ -25,7 +25,7 @@ using Poco::Timespan; using Poco::AssertionViolationException; -DateTimeTest::DateTimeTest(const std::string& name): CppUnit::TestCase(name) +DateTimeTest::DateTimeTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/DigestStreamTest.cpp b/Foundation/testsuite/src/DigestStreamTest.cpp index ba8982987..cc7119233 100644 --- a/Foundation/testsuite/src/DigestStreamTest.cpp +++ b/Foundation/testsuite/src/DigestStreamTest.cpp @@ -25,7 +25,7 @@ using Poco::DigestEngine; using Poco::MD5Engine; -DigestStreamTest::DigestStreamTest(const std::string& name): CppUnit::TestCase(name) +DigestStreamTest::DigestStreamTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/DirectoryIteratorsTest.cpp b/Foundation/testsuite/src/DirectoryIteratorsTest.cpp index d2d94ff79..6ba58e8c7 100644 --- a/Foundation/testsuite/src/DirectoryIteratorsTest.cpp +++ b/Foundation/testsuite/src/DirectoryIteratorsTest.cpp @@ -23,8 +23,8 @@ using namespace Poco; -DirectoryIteratorsTest::DirectoryIteratorsTest(const std::string& name): - CppUnit::TestCase(name) +DirectoryIteratorsTest::DirectoryIteratorsTest(const std::string& rName): + CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/DirectoryWatcherTest.cpp b/Foundation/testsuite/src/DirectoryWatcherTest.cpp index 24c718949..40b07898c 100644 --- a/Foundation/testsuite/src/DirectoryWatcherTest.cpp +++ b/Foundation/testsuite/src/DirectoryWatcherTest.cpp @@ -26,8 +26,8 @@ using Poco::DirectoryWatcher; -DirectoryWatcherTest::DirectoryWatcherTest(const std::string& name): - CppUnit::TestCase(name), +DirectoryWatcherTest::DirectoryWatcherTest(const std::string& rName): + CppUnit::TestCase(rName), _error(false) { } diff --git a/Foundation/testsuite/src/DynamicFactoryTest.cpp b/Foundation/testsuite/src/DynamicFactoryTest.cpp index 478aace1c..67ce5e0b2 100644 --- a/Foundation/testsuite/src/DynamicFactoryTest.cpp +++ b/Foundation/testsuite/src/DynamicFactoryTest.cpp @@ -46,7 +46,7 @@ namespace } -DynamicFactoryTest::DynamicFactoryTest(const std::string& name): CppUnit::TestCase(name) +DynamicFactoryTest::DynamicFactoryTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ExpireCacheTest.cpp b/Foundation/testsuite/src/ExpireCacheTest.cpp index 0e8cde480..1c64a7159 100644 --- a/Foundation/testsuite/src/ExpireCacheTest.cpp +++ b/Foundation/testsuite/src/ExpireCacheTest.cpp @@ -28,7 +28,7 @@ using namespace Poco; #define DURWAIT 300 -ExpireCacheTest::ExpireCacheTest(const std::string& name): CppUnit::TestCase(name) +ExpireCacheTest::ExpireCacheTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ExpireLRUCacheTest.cpp b/Foundation/testsuite/src/ExpireLRUCacheTest.cpp index 31ef4baaf..304268dd6 100644 --- a/Foundation/testsuite/src/ExpireLRUCacheTest.cpp +++ b/Foundation/testsuite/src/ExpireLRUCacheTest.cpp @@ -28,7 +28,7 @@ using namespace Poco; #define DURWAIT 300 -ExpireLRUCacheTest::ExpireLRUCacheTest(const std::string& name): CppUnit::TestCase(name) +ExpireLRUCacheTest::ExpireLRUCacheTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/FIFOBufferStreamTest.cpp b/Foundation/testsuite/src/FIFOBufferStreamTest.cpp index 1a07b91b0..dc7ddcb02 100644 --- a/Foundation/testsuite/src/FIFOBufferStreamTest.cpp +++ b/Foundation/testsuite/src/FIFOBufferStreamTest.cpp @@ -23,7 +23,7 @@ using Poco::FIFOBufferStream; using Poco::delegate; -FIFOBufferStreamTest::FIFOBufferStreamTest(const std::string& name): CppUnit::TestCase(name) +FIFOBufferStreamTest::FIFOBufferStreamTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/FIFOBufferTest.cpp b/Foundation/testsuite/src/FIFOBufferTest.cpp index a3819d6ef..a7f039ef2 100644 --- a/Foundation/testsuite/src/FIFOBufferTest.cpp +++ b/Foundation/testsuite/src/FIFOBufferTest.cpp @@ -31,8 +31,8 @@ using Poco::delegate; using std::memcpy; -FIFOBufferTest::FIFOBufferTest(const std::string& name): - CppUnit::TestCase(name), +FIFOBufferTest::FIFOBufferTest(const std::string& rName): + CppUnit::TestCase(rName), _notToReadable(0), _notToWritable(0), _readableToNot(0), diff --git a/Foundation/testsuite/src/FIFOEventTest.cpp b/Foundation/testsuite/src/FIFOEventTest.cpp index fdc4ac0e7..1309ead8b 100644 --- a/Foundation/testsuite/src/FIFOEventTest.cpp +++ b/Foundation/testsuite/src/FIFOEventTest.cpp @@ -26,7 +26,7 @@ using namespace Poco; #define LARGEINC 100 -FIFOEventTest::FIFOEventTest(const std::string& name): CppUnit::TestCase(name) +FIFOEventTest::FIFOEventTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/FPETest.cpp b/Foundation/testsuite/src/FPETest.cpp index 5f4fba2b8..ef39c4eb7 100644 --- a/Foundation/testsuite/src/FPETest.cpp +++ b/Foundation/testsuite/src/FPETest.cpp @@ -19,7 +19,7 @@ using Poco::FPE; -FPETest::FPETest(const std::string& name): CppUnit::TestCase(name) +FPETest::FPETest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/FileChannelTest.cpp b/Foundation/testsuite/src/FileChannelTest.cpp index bb0c86643..77a65fa2a 100644 --- a/Foundation/testsuite/src/FileChannelTest.cpp +++ b/Foundation/testsuite/src/FileChannelTest.cpp @@ -48,7 +48,7 @@ using Poco::DirectoryIterator; using Poco::InvalidArgumentException; -FileChannelTest::FileChannelTest(const std::string& name): CppUnit::TestCase(name) +FileChannelTest::FileChannelTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/FileStreamTest.cpp b/Foundation/testsuite/src/FileStreamTest.cpp index 27ad70b58..7ef5eaeb9 100644 --- a/Foundation/testsuite/src/FileStreamTest.cpp +++ b/Foundation/testsuite/src/FileStreamTest.cpp @@ -19,7 +19,7 @@ #include "Poco/Exception.h" -FileStreamTest::FileStreamTest(const std::string& name): CppUnit::TestCase(name) +FileStreamTest::FileStreamTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/FileTest.cpp b/Foundation/testsuite/src/FileTest.cpp index 9b2117a11..fc0810e41 100644 --- a/Foundation/testsuite/src/FileTest.cpp +++ b/Foundation/testsuite/src/FileTest.cpp @@ -30,7 +30,7 @@ using Poco::Timestamp; using Poco::Thread; -FileTest::FileTest(const std::string& name): CppUnit::TestCase(name) +FileTest::FileTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/FormatTest.cpp b/Foundation/testsuite/src/FormatTest.cpp index 1ace4f9b5..a2620999b 100644 --- a/Foundation/testsuite/src/FormatTest.cpp +++ b/Foundation/testsuite/src/FormatTest.cpp @@ -24,7 +24,7 @@ using Poco::Int64; using Poco::UInt64; -FormatTest::FormatTest(const std::string& name): CppUnit::TestCase(name) +FormatTest::FormatTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/GlobTest.cpp b/Foundation/testsuite/src/GlobTest.cpp index 25c887ec6..fdf65cf76 100644 --- a/Foundation/testsuite/src/GlobTest.cpp +++ b/Foundation/testsuite/src/GlobTest.cpp @@ -24,7 +24,7 @@ using Poco::File; using Poco::Path; -GlobTest::GlobTest(const std::string& name): CppUnit::TestCase(name) +GlobTest::GlobTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/HMACEngineTest.cpp b/Foundation/testsuite/src/HMACEngineTest.cpp index 2b21e1e6d..9690d987d 100644 --- a/Foundation/testsuite/src/HMACEngineTest.cpp +++ b/Foundation/testsuite/src/HMACEngineTest.cpp @@ -22,7 +22,7 @@ using Poco::MD5Engine; using Poco::DigestEngine; -HMACEngineTest::HMACEngineTest(const std::string& name): CppUnit::TestCase(name) +HMACEngineTest::HMACEngineTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/HashMapTest.cpp b/Foundation/testsuite/src/HashMapTest.cpp index 5f14ad4ea..3f5f0b851 100644 --- a/Foundation/testsuite/src/HashMapTest.cpp +++ b/Foundation/testsuite/src/HashMapTest.cpp @@ -21,7 +21,7 @@ using Poco::HashMap; -HashMapTest::HashMapTest(const std::string& name): CppUnit::TestCase(name) +HashMapTest::HashMapTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/HashSetTest.cpp b/Foundation/testsuite/src/HashSetTest.cpp index 288ee57c7..e1cf840c4 100644 --- a/Foundation/testsuite/src/HashSetTest.cpp +++ b/Foundation/testsuite/src/HashSetTest.cpp @@ -21,7 +21,7 @@ using Poco::Hash; using Poco::HashSet; -HashSetTest::HashSetTest(const std::string& name): CppUnit::TestCase(name) +HashSetTest::HashSetTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/HashTableTest.cpp b/Foundation/testsuite/src/HashTableTest.cpp index da305b991..e7e797f34 100644 --- a/Foundation/testsuite/src/HashTableTest.cpp +++ b/Foundation/testsuite/src/HashTableTest.cpp @@ -20,7 +20,7 @@ using namespace Poco; -HashTableTest::HashTableTest(const std::string& name): CppUnit::TestCase(name) +HashTableTest::HashTableTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/HexBinaryTest.cpp b/Foundation/testsuite/src/HexBinaryTest.cpp index fe3796dd6..29d72ff68 100644 --- a/Foundation/testsuite/src/HexBinaryTest.cpp +++ b/Foundation/testsuite/src/HexBinaryTest.cpp @@ -24,7 +24,7 @@ using Poco::HexBinaryDecoder; using Poco::DataFormatException; -HexBinaryTest::HexBinaryTest(const std::string& name): CppUnit::TestCase(name) +HexBinaryTest::HexBinaryTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/LRUCacheTest.cpp b/Foundation/testsuite/src/LRUCacheTest.cpp index 24a64eb94..da0cc598a 100644 --- a/Foundation/testsuite/src/LRUCacheTest.cpp +++ b/Foundation/testsuite/src/LRUCacheTest.cpp @@ -22,7 +22,7 @@ using namespace Poco; -LRUCacheTest::LRUCacheTest(const std::string& name): CppUnit::TestCase(name) +LRUCacheTest::LRUCacheTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/LineEndingConverterTest.cpp b/Foundation/testsuite/src/LineEndingConverterTest.cpp index 70d85ba45..ca2412e09 100644 --- a/Foundation/testsuite/src/LineEndingConverterTest.cpp +++ b/Foundation/testsuite/src/LineEndingConverterTest.cpp @@ -24,7 +24,7 @@ using Poco::OutputLineEndingConverter; using Poco::StreamCopier; -LineEndingConverterTest::LineEndingConverterTest(const std::string& name): CppUnit::TestCase(name) +LineEndingConverterTest::LineEndingConverterTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/LinearHashTableTest.cpp b/Foundation/testsuite/src/LinearHashTableTest.cpp index 6c7607845..6bbc230f2 100644 --- a/Foundation/testsuite/src/LinearHashTableTest.cpp +++ b/Foundation/testsuite/src/LinearHashTableTest.cpp @@ -28,7 +28,7 @@ using Poco::Stopwatch; using Poco::NumberFormatter; -LinearHashTableTest::LinearHashTableTest(const std::string& name): CppUnit::TestCase(name) +LinearHashTableTest::LinearHashTableTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ListMapTest.cpp b/Foundation/testsuite/src/ListMapTest.cpp index e3b1ae0c1..f0a249f75 100644 --- a/Foundation/testsuite/src/ListMapTest.cpp +++ b/Foundation/testsuite/src/ListMapTest.cpp @@ -21,7 +21,7 @@ using Poco::ListMap; -ListMapTest::ListMapTest(const std::string& name): CppUnit::TestCase(name) +ListMapTest::ListMapTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/LocalDateTimeTest.cpp b/Foundation/testsuite/src/LocalDateTimeTest.cpp index f3381419e..72dcdfcd2 100644 --- a/Foundation/testsuite/src/LocalDateTimeTest.cpp +++ b/Foundation/testsuite/src/LocalDateTimeTest.cpp @@ -36,7 +36,7 @@ using std::strftime; #endif -LocalDateTimeTest::LocalDateTimeTest(const std::string& name): CppUnit::TestCase(name) +LocalDateTimeTest::LocalDateTimeTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/LogStreamTest.cpp b/Foundation/testsuite/src/LogStreamTest.cpp index 3e8b6d1e3..a6b90cd1b 100644 --- a/Foundation/testsuite/src/LogStreamTest.cpp +++ b/Foundation/testsuite/src/LogStreamTest.cpp @@ -26,7 +26,7 @@ using Poco::Message; using Poco::AutoPtr; -LogStreamTest::LogStreamTest(const std::string& name): CppUnit::TestCase(name) +LogStreamTest::LogStreamTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/LoggerTest.cpp b/Foundation/testsuite/src/LoggerTest.cpp index 896d439e9..7f4f42e82 100644 --- a/Foundation/testsuite/src/LoggerTest.cpp +++ b/Foundation/testsuite/src/LoggerTest.cpp @@ -24,7 +24,7 @@ using Poco::Message; using Poco::AutoPtr; -LoggerTest::LoggerTest(const std::string& name): CppUnit::TestCase(name) +LoggerTest::LoggerTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/LoggingFactoryTest.cpp b/Foundation/testsuite/src/LoggingFactoryTest.cpp index 4ad770796..955a05e9d 100644 --- a/Foundation/testsuite/src/LoggingFactoryTest.cpp +++ b/Foundation/testsuite/src/LoggingFactoryTest.cpp @@ -61,7 +61,7 @@ namespace } -LoggingFactoryTest::LoggingFactoryTest(const std::string& name): CppUnit::TestCase(name) +LoggingFactoryTest::LoggingFactoryTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/LoggingRegistryTest.cpp b/Foundation/testsuite/src/LoggingRegistryTest.cpp index 8ed076521..d78144d0c 100644 --- a/Foundation/testsuite/src/LoggingRegistryTest.cpp +++ b/Foundation/testsuite/src/LoggingRegistryTest.cpp @@ -27,7 +27,7 @@ using Poco::PatternFormatter; using Poco::AutoPtr; -LoggingRegistryTest::LoggingRegistryTest(const std::string& name): CppUnit::TestCase(name) +LoggingRegistryTest::LoggingRegistryTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/MD4EngineTest.cpp b/Foundation/testsuite/src/MD4EngineTest.cpp index c31a90096..cd7cdb7a8 100644 --- a/Foundation/testsuite/src/MD4EngineTest.cpp +++ b/Foundation/testsuite/src/MD4EngineTest.cpp @@ -20,7 +20,7 @@ using Poco::MD4Engine; using Poco::DigestEngine; -MD4EngineTest::MD4EngineTest(const std::string& name): CppUnit::TestCase(name) +MD4EngineTest::MD4EngineTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/MD5EngineTest.cpp b/Foundation/testsuite/src/MD5EngineTest.cpp index b4c4fa24b..fea34b017 100644 --- a/Foundation/testsuite/src/MD5EngineTest.cpp +++ b/Foundation/testsuite/src/MD5EngineTest.cpp @@ -20,7 +20,7 @@ using Poco::MD5Engine; using Poco::DigestEngine; -MD5EngineTest::MD5EngineTest(const std::string& name): CppUnit::TestCase(name) +MD5EngineTest::MD5EngineTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ManifestTest.cpp b/Foundation/testsuite/src/ManifestTest.cpp index 2a78b4f69..6fd666539 100644 --- a/Foundation/testsuite/src/ManifestTest.cpp +++ b/Foundation/testsuite/src/ManifestTest.cpp @@ -32,7 +32,7 @@ class MfTestObject: public MfTestBase }; -ManifestTest::ManifestTest(const std::string& name): CppUnit::TestCase(name) +ManifestTest::ManifestTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/MemoryPoolTest.cpp b/Foundation/testsuite/src/MemoryPoolTest.cpp index dd482d822..12d448415 100644 --- a/Foundation/testsuite/src/MemoryPoolTest.cpp +++ b/Foundation/testsuite/src/MemoryPoolTest.cpp @@ -20,7 +20,7 @@ using Poco::MemoryPool; -MemoryPoolTest::MemoryPoolTest(const std::string& name): CppUnit::TestCase(name) +MemoryPoolTest::MemoryPoolTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/MemoryStreamTest.cpp b/Foundation/testsuite/src/MemoryStreamTest.cpp index 86ea9557a..b823133e5 100644 --- a/Foundation/testsuite/src/MemoryStreamTest.cpp +++ b/Foundation/testsuite/src/MemoryStreamTest.cpp @@ -22,7 +22,7 @@ using Poco::MemoryInputStream; using Poco::MemoryOutputStream; -MemoryStreamTest::MemoryStreamTest(const std::string& name): CppUnit::TestCase(name) +MemoryStreamTest::MemoryStreamTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/MutexTest.cpp b/Foundation/testsuite/src/MutexTest.cpp index 9b3f70f24..ab591ece7 100644 --- a/Foundation/testsuite/src/MutexTest.cpp +++ b/Foundation/testsuite/src/MutexTest.cpp @@ -62,7 +62,7 @@ namespace } -MutexTest::MutexTest(const std::string& name): CppUnit::TestCase(name) +MutexTest::MutexTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/NDCTest.cpp b/Foundation/testsuite/src/NDCTest.cpp index 9ae2a35dd..55820f245 100644 --- a/Foundation/testsuite/src/NDCTest.cpp +++ b/Foundation/testsuite/src/NDCTest.cpp @@ -20,7 +20,7 @@ using Poco::NDC; -NDCTest::NDCTest(const std::string& name): CppUnit::TestCase(name) +NDCTest::NDCTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/NamedEventTest.cpp b/Foundation/testsuite/src/NamedEventTest.cpp index 4f22197c8..87ef29221 100644 --- a/Foundation/testsuite/src/NamedEventTest.cpp +++ b/Foundation/testsuite/src/NamedEventTest.cpp @@ -51,7 +51,7 @@ namespace } -NamedEventTest::NamedEventTest(const std::string& name): CppUnit::TestCase(name) +NamedEventTest::NamedEventTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/NamedMutexTest.cpp b/Foundation/testsuite/src/NamedMutexTest.cpp index 3d3b3047f..5cb813b18 100644 --- a/Foundation/testsuite/src/NamedMutexTest.cpp +++ b/Foundation/testsuite/src/NamedMutexTest.cpp @@ -77,7 +77,7 @@ namespace } -NamedMutexTest::NamedMutexTest(const std::string& name): CppUnit::TestCase(name) +NamedMutexTest::NamedMutexTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/NamedTuplesTest.cpp b/Foundation/testsuite/src/NamedTuplesTest.cpp index 3442e52b5..e35f1b497 100644 --- a/Foundation/testsuite/src/NamedTuplesTest.cpp +++ b/Foundation/testsuite/src/NamedTuplesTest.cpp @@ -34,7 +34,7 @@ using Poco::NotFoundException; using Poco::InvalidArgumentException; -NamedTuplesTest::NamedTuplesTest(const std::string& name): CppUnit::TestCase(name) +NamedTuplesTest::NamedTuplesTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/NotificationCenterTest.cpp b/Foundation/testsuite/src/NotificationCenterTest.cpp index fa5b98c71..ff74da85b 100644 --- a/Foundation/testsuite/src/NotificationCenterTest.cpp +++ b/Foundation/testsuite/src/NotificationCenterTest.cpp @@ -31,7 +31,7 @@ class TestNotification: public Notification }; -NotificationCenterTest::NotificationCenterTest(const std::string& name): CppUnit::TestCase(name) +NotificationCenterTest::NotificationCenterTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/NotificationQueueTest.cpp b/Foundation/testsuite/src/NotificationQueueTest.cpp index 559869b34..3096603d4 100644 --- a/Foundation/testsuite/src/NotificationQueueTest.cpp +++ b/Foundation/testsuite/src/NotificationQueueTest.cpp @@ -49,7 +49,7 @@ namespace } -NotificationQueueTest::NotificationQueueTest(const std::string& name): CppUnit::TestCase(name) +NotificationQueueTest::NotificationQueueTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/NullStreamTest.cpp b/Foundation/testsuite/src/NullStreamTest.cpp index 27ceffb1e..150a761b7 100644 --- a/Foundation/testsuite/src/NullStreamTest.cpp +++ b/Foundation/testsuite/src/NullStreamTest.cpp @@ -20,7 +20,7 @@ using Poco::NullInputStream; using Poco::NullOutputStream; -NullStreamTest::NullStreamTest(const std::string& name): CppUnit::TestCase(name) +NullStreamTest::NullStreamTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/NumberFormatterTest.cpp b/Foundation/testsuite/src/NumberFormatterTest.cpp index e6935a711..1a68ec672 100644 --- a/Foundation/testsuite/src/NumberFormatterTest.cpp +++ b/Foundation/testsuite/src/NumberFormatterTest.cpp @@ -21,7 +21,7 @@ using Poco::Int64; using Poco::UInt64; -NumberFormatterTest::NumberFormatterTest(const std::string& name): CppUnit::TestCase(name) +NumberFormatterTest::NumberFormatterTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/NumberParserTest.cpp b/Foundation/testsuite/src/NumberParserTest.cpp index cb656494b..3146e7126 100644 --- a/Foundation/testsuite/src/NumberParserTest.cpp +++ b/Foundation/testsuite/src/NumberParserTest.cpp @@ -42,7 +42,7 @@ using Poco::decimalSeparator; using Poco::thousandSeparator; -NumberParserTest::NumberParserTest(const std::string& name): CppUnit::TestCase(name) +NumberParserTest::NumberParserTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ObjectPoolTest.cpp b/Foundation/testsuite/src/ObjectPoolTest.cpp index 1f631f5fd..e6e582504 100644 --- a/Foundation/testsuite/src/ObjectPoolTest.cpp +++ b/Foundation/testsuite/src/ObjectPoolTest.cpp @@ -20,7 +20,7 @@ using Poco::ObjectPool; -ObjectPoolTest::ObjectPoolTest(const std::string& name): CppUnit::TestCase(name) +ObjectPoolTest::ObjectPoolTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/PBKDF2EngineTest.cpp b/Foundation/testsuite/src/PBKDF2EngineTest.cpp index 5a3ed21e1..a492b1bff 100644 --- a/Foundation/testsuite/src/PBKDF2EngineTest.cpp +++ b/Foundation/testsuite/src/PBKDF2EngineTest.cpp @@ -24,7 +24,7 @@ using Poco::SHA1Engine; using Poco::DigestEngine; -PBKDF2EngineTest::PBKDF2EngineTest(const std::string& name): CppUnit::TestCase(name) +PBKDF2EngineTest::PBKDF2EngineTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/PathTest.cpp b/Foundation/testsuite/src/PathTest.cpp index a601e8067..7d6e8ca90 100644 --- a/Foundation/testsuite/src/PathTest.cpp +++ b/Foundation/testsuite/src/PathTest.cpp @@ -34,7 +34,7 @@ using Poco::PathSyntaxException; using Poco::Environment; -PathTest::PathTest(const std::string& name): CppUnit::TestCase(name) +PathTest::PathTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/PatternFormatterTest.cpp b/Foundation/testsuite/src/PatternFormatterTest.cpp index 77987996f..f7dc5ca3a 100644 --- a/Foundation/testsuite/src/PatternFormatterTest.cpp +++ b/Foundation/testsuite/src/PatternFormatterTest.cpp @@ -23,7 +23,7 @@ using Poco::Message; using Poco::DateTime; -PatternFormatterTest::PatternFormatterTest(const std::string& name): CppUnit::TestCase(name) +PatternFormatterTest::PatternFormatterTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/PriorityEventTest.cpp b/Foundation/testsuite/src/PriorityEventTest.cpp index 749314792..68c03a761 100644 --- a/Foundation/testsuite/src/PriorityEventTest.cpp +++ b/Foundation/testsuite/src/PriorityEventTest.cpp @@ -26,7 +26,7 @@ using namespace Poco; #define LARGEINC 100 -PriorityEventTest::PriorityEventTest(const std::string& name): CppUnit::TestCase(name) +PriorityEventTest::PriorityEventTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/PriorityNotificationQueueTest.cpp b/Foundation/testsuite/src/PriorityNotificationQueueTest.cpp index 8240a2a84..00df20461 100644 --- a/Foundation/testsuite/src/PriorityNotificationQueueTest.cpp +++ b/Foundation/testsuite/src/PriorityNotificationQueueTest.cpp @@ -49,7 +49,7 @@ namespace } -PriorityNotificationQueueTest::PriorityNotificationQueueTest(const std::string& name): CppUnit::TestCase(name) +PriorityNotificationQueueTest::PriorityNotificationQueueTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ProcessTest.cpp b/Foundation/testsuite/src/ProcessTest.cpp index 71d6eabb3..5b7c59cc6 100644 --- a/Foundation/testsuite/src/ProcessTest.cpp +++ b/Foundation/testsuite/src/ProcessTest.cpp @@ -26,7 +26,7 @@ using Poco::PipeInputStream; using Poco::PipeOutputStream; -ProcessTest::ProcessTest(const std::string& name): CppUnit::TestCase(name) +ProcessTest::ProcessTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/RWLockTest.cpp b/Foundation/testsuite/src/RWLockTest.cpp index e8b6a30f1..b3486ef1a 100644 --- a/Foundation/testsuite/src/RWLockTest.cpp +++ b/Foundation/testsuite/src/RWLockTest.cpp @@ -121,7 +121,7 @@ private: }; -RWLockTest::RWLockTest(const std::string& name): CppUnit::TestCase(name) +RWLockTest::RWLockTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/RandomStreamTest.cpp b/Foundation/testsuite/src/RandomStreamTest.cpp index 2d641062f..e0fa559e0 100644 --- a/Foundation/testsuite/src/RandomStreamTest.cpp +++ b/Foundation/testsuite/src/RandomStreamTest.cpp @@ -21,7 +21,7 @@ using Poco::RandomInputStream; -RandomStreamTest::RandomStreamTest(const std::string& name): CppUnit::TestCase(name) +RandomStreamTest::RandomStreamTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/RandomTest.cpp b/Foundation/testsuite/src/RandomTest.cpp index c5ed53590..1797a0f98 100644 --- a/Foundation/testsuite/src/RandomTest.cpp +++ b/Foundation/testsuite/src/RandomTest.cpp @@ -21,7 +21,7 @@ using Poco::UInt32; -RandomTest::RandomTest(const std::string& name): CppUnit::TestCase(name) +RandomTest::RandomTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/RegularExpressionTest.cpp b/Foundation/testsuite/src/RegularExpressionTest.cpp index cd6c1fb13..fd8aa8d2a 100644 --- a/Foundation/testsuite/src/RegularExpressionTest.cpp +++ b/Foundation/testsuite/src/RegularExpressionTest.cpp @@ -21,7 +21,7 @@ using Poco::RegularExpression; using Poco::RegularExpressionException; -RegularExpressionTest::RegularExpressionTest(const std::string& name): CppUnit::TestCase(name) +RegularExpressionTest::RegularExpressionTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/SHA1EngineTest.cpp b/Foundation/testsuite/src/SHA1EngineTest.cpp index a0e95f3c2..99f47403f 100644 --- a/Foundation/testsuite/src/SHA1EngineTest.cpp +++ b/Foundation/testsuite/src/SHA1EngineTest.cpp @@ -20,7 +20,7 @@ using Poco::SHA1Engine; using Poco::DigestEngine; -SHA1EngineTest::SHA1EngineTest(const std::string& name): CppUnit::TestCase(name) +SHA1EngineTest::SHA1EngineTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/SemaphoreTest.cpp b/Foundation/testsuite/src/SemaphoreTest.cpp index 515f6db10..f65607927 100644 --- a/Foundation/testsuite/src/SemaphoreTest.cpp +++ b/Foundation/testsuite/src/SemaphoreTest.cpp @@ -69,7 +69,7 @@ private: }; -SemaphoreTest::SemaphoreTest(const std::string& name): CppUnit::TestCase(name) +SemaphoreTest::SemaphoreTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/SharedLibraryTest.cpp b/Foundation/testsuite/src/SharedLibraryTest.cpp index d53c1ea09..fc0b7908b 100644 --- a/Foundation/testsuite/src/SharedLibraryTest.cpp +++ b/Foundation/testsuite/src/SharedLibraryTest.cpp @@ -26,7 +26,7 @@ using Poco::LibraryAlreadyLoadedException; typedef int (*GimmeFiveFunc)(); -SharedLibraryTest::SharedLibraryTest(const std::string& name): CppUnit::TestCase(name) +SharedLibraryTest::SharedLibraryTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/SharedMemoryTest.cpp b/Foundation/testsuite/src/SharedMemoryTest.cpp index 001e4dee3..0cdf925ef 100644 --- a/Foundation/testsuite/src/SharedMemoryTest.cpp +++ b/Foundation/testsuite/src/SharedMemoryTest.cpp @@ -25,7 +25,7 @@ using Poco::SharedMemory; -SharedMemoryTest::SharedMemoryTest(const std::string& name): CppUnit::TestCase(name) +SharedMemoryTest::SharedMemoryTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/SharedPtrTest.cpp b/Foundation/testsuite/src/SharedPtrTest.cpp index 8dce9b1f4..06ce7eb9a 100644 --- a/Foundation/testsuite/src/SharedPtrTest.cpp +++ b/Foundation/testsuite/src/SharedPtrTest.cpp @@ -26,7 +26,7 @@ namespace class TestObject { public: - TestObject(const std::string& data): _data(data) + TestObject(const std::string& rData): _data(rData) { ++_count; } @@ -71,7 +71,7 @@ namespace } -SharedPtrTest::SharedPtrTest(const std::string& name): CppUnit::TestCase(name) +SharedPtrTest::SharedPtrTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/SimpleFileChannelTest.cpp b/Foundation/testsuite/src/SimpleFileChannelTest.cpp index aa320bedb..331d73210 100644 --- a/Foundation/testsuite/src/SimpleFileChannelTest.cpp +++ b/Foundation/testsuite/src/SimpleFileChannelTest.cpp @@ -33,7 +33,7 @@ using Poco::DateTimeFormatter; using Poco::AutoPtr; -SimpleFileChannelTest::SimpleFileChannelTest(const std::string& name): CppUnit::TestCase(name) +SimpleFileChannelTest::SimpleFileChannelTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/SimpleHashTableTest.cpp b/Foundation/testsuite/src/SimpleHashTableTest.cpp index 3ee4081eb..491dc4a91 100644 --- a/Foundation/testsuite/src/SimpleHashTableTest.cpp +++ b/Foundation/testsuite/src/SimpleHashTableTest.cpp @@ -20,7 +20,7 @@ using namespace Poco; -SimpleHashTableTest::SimpleHashTableTest(const std::string& name): CppUnit::TestCase(name) +SimpleHashTableTest::SimpleHashTableTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/StopwatchTest.cpp b/Foundation/testsuite/src/StopwatchTest.cpp index 87c8633f0..0f410e547 100644 --- a/Foundation/testsuite/src/StopwatchTest.cpp +++ b/Foundation/testsuite/src/StopwatchTest.cpp @@ -23,7 +23,7 @@ using Poco::Timestamp; using Poco::Thread; -StopwatchTest::StopwatchTest(const std::string& name): CppUnit::TestCase(name) +StopwatchTest::StopwatchTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/StreamConverterTest.cpp b/Foundation/testsuite/src/StreamConverterTest.cpp index 3d3e6368d..707eef5d4 100644 --- a/Foundation/testsuite/src/StreamConverterTest.cpp +++ b/Foundation/testsuite/src/StreamConverterTest.cpp @@ -29,7 +29,7 @@ using Poco::ASCIIEncoding; using Poco::StreamCopier; -StreamConverterTest::StreamConverterTest(const std::string& name): CppUnit::TestCase(name) +StreamConverterTest::StreamConverterTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/StreamCopierTest.cpp b/Foundation/testsuite/src/StreamCopierTest.cpp index 2daa50e9b..00bd46f66 100644 --- a/Foundation/testsuite/src/StreamCopierTest.cpp +++ b/Foundation/testsuite/src/StreamCopierTest.cpp @@ -20,7 +20,7 @@ using Poco::StreamCopier; -StreamCopierTest::StreamCopierTest(const std::string& name): CppUnit::TestCase(name) +StreamCopierTest::StreamCopierTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/StreamTokenizerTest.cpp b/Foundation/testsuite/src/StreamTokenizerTest.cpp index 5bd090e7e..4890ab8fc 100644 --- a/Foundation/testsuite/src/StreamTokenizerTest.cpp +++ b/Foundation/testsuite/src/StreamTokenizerTest.cpp @@ -105,7 +105,7 @@ public: }; -StreamTokenizerTest::StreamTokenizerTest(const std::string& name): CppUnit::TestCase(name) +StreamTokenizerTest::StreamTokenizerTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/StringTest.cpp b/Foundation/testsuite/src/StringTest.cpp index d3519cf94..07cf4a6c6 100644 --- a/Foundation/testsuite/src/StringTest.cpp +++ b/Foundation/testsuite/src/StringTest.cpp @@ -64,7 +64,7 @@ using Poco::Stopwatch; using Poco::RangeException; -StringTest::StringTest(const std::string& name): CppUnit::TestCase(name) +StringTest::StringTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/StringTokenizerTest.cpp b/Foundation/testsuite/src/StringTokenizerTest.cpp index a2e4f6127..52c2a4d53 100644 --- a/Foundation/testsuite/src/StringTokenizerTest.cpp +++ b/Foundation/testsuite/src/StringTokenizerTest.cpp @@ -22,7 +22,7 @@ using Poco::RangeException; using Poco::NotFoundException; -StringTokenizerTest::StringTokenizerTest(const std::string& name): CppUnit::TestCase(name) +StringTokenizerTest::StringTokenizerTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/TaskManagerTest.cpp b/Foundation/testsuite/src/TaskManagerTest.cpp index 85d5ea11b..34d424577 100644 --- a/Foundation/testsuite/src/TaskManagerTest.cpp +++ b/Foundation/testsuite/src/TaskManagerTest.cpp @@ -234,7 +234,7 @@ namespace } -TaskManagerTest::TaskManagerTest(const std::string& name): CppUnit::TestCase(name) +TaskManagerTest::TaskManagerTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/TaskTest.cpp b/Foundation/testsuite/src/TaskTest.cpp index c8ef856a5..c6c44afa4 100644 --- a/Foundation/testsuite/src/TaskTest.cpp +++ b/Foundation/testsuite/src/TaskTest.cpp @@ -58,7 +58,7 @@ namespace } -TaskTest::TaskTest(const std::string& name): CppUnit::TestCase(name) +TaskTest::TaskTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/TeeStreamTest.cpp b/Foundation/testsuite/src/TeeStreamTest.cpp index d0d64e50f..8e6fa8047 100644 --- a/Foundation/testsuite/src/TeeStreamTest.cpp +++ b/Foundation/testsuite/src/TeeStreamTest.cpp @@ -21,7 +21,7 @@ using Poco::TeeInputStream; using Poco::TeeOutputStream; -TeeStreamTest::TeeStreamTest(const std::string& name): CppUnit::TestCase(name) +TeeStreamTest::TeeStreamTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/TextBufferIteratorTest.cpp b/Foundation/testsuite/src/TextBufferIteratorTest.cpp index 85854607c..3fe5d511a 100644 --- a/Foundation/testsuite/src/TextBufferIteratorTest.cpp +++ b/Foundation/testsuite/src/TextBufferIteratorTest.cpp @@ -25,7 +25,7 @@ using Poco::UTF8Encoding; using Poco::UTF16Encoding; -TextBufferIteratorTest::TextBufferIteratorTest(const std::string& name): CppUnit::TestCase(name) +TextBufferIteratorTest::TextBufferIteratorTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/TextConverterTest.cpp b/Foundation/testsuite/src/TextConverterTest.cpp index afe304bc3..b19115473 100644 --- a/Foundation/testsuite/src/TextConverterTest.cpp +++ b/Foundation/testsuite/src/TextConverterTest.cpp @@ -27,7 +27,7 @@ using namespace Poco; -TextConverterTest::TextConverterTest(const std::string& name): CppUnit::TestCase(name) +TextConverterTest::TextConverterTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/TextEncodingTest.cpp b/Foundation/testsuite/src/TextEncodingTest.cpp index f9b0460ba..aa372bfac 100644 --- a/Foundation/testsuite/src/TextEncodingTest.cpp +++ b/Foundation/testsuite/src/TextEncodingTest.cpp @@ -26,7 +26,7 @@ using namespace Poco; -TextEncodingTest::TextEncodingTest(const std::string& name): CppUnit::TestCase(name) +TextEncodingTest::TextEncodingTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/TextIteratorTest.cpp b/Foundation/testsuite/src/TextIteratorTest.cpp index 42dc17e60..d522bd3ba 100644 --- a/Foundation/testsuite/src/TextIteratorTest.cpp +++ b/Foundation/testsuite/src/TextIteratorTest.cpp @@ -25,7 +25,7 @@ using Poco::UTF8Encoding; using Poco::UTF16Encoding; -TextIteratorTest::TextIteratorTest(const std::string& name): CppUnit::TestCase(name) +TextIteratorTest::TextIteratorTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ThreadLocalTest.cpp b/Foundation/testsuite/src/ThreadLocalTest.cpp index 61fc60351..de7f8bd4c 100644 --- a/Foundation/testsuite/src/ThreadLocalTest.cpp +++ b/Foundation/testsuite/src/ThreadLocalTest.cpp @@ -60,7 +60,7 @@ struct TLTestStruct ThreadLocal TLTestRunnable::_count; -ThreadLocalTest::ThreadLocalTest(const std::string& name): CppUnit::TestCase(name) +ThreadLocalTest::ThreadLocalTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ThreadPoolTest.cpp b/Foundation/testsuite/src/ThreadPoolTest.cpp index 3ec9cd262..a6db36a33 100644 --- a/Foundation/testsuite/src/ThreadPoolTest.cpp +++ b/Foundation/testsuite/src/ThreadPoolTest.cpp @@ -25,7 +25,7 @@ using Poco::RunnableAdapter; using Poco::Thread; -ThreadPoolTest::ThreadPoolTest(const std::string& name): CppUnit::TestCase(name), _event(Event::EVENT_MANUALRESET) +ThreadPoolTest::ThreadPoolTest(const std::string& rName): CppUnit::TestCase(rName), _event(Event::EVENT_MANUALRESET) { } diff --git a/Foundation/testsuite/src/ThreadTest.cpp b/Foundation/testsuite/src/ThreadTest.cpp index 3306169f1..b07cd333c 100644 --- a/Foundation/testsuite/src/ThreadTest.cpp +++ b/Foundation/testsuite/src/ThreadTest.cpp @@ -148,7 +148,7 @@ private: }; -ThreadTest::ThreadTest(const std::string& name): CppUnit::TestCase(name) +ThreadTest::ThreadTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/TimedNotificationQueueTest.cpp b/Foundation/testsuite/src/TimedNotificationQueueTest.cpp index e21e74401..49d37a438 100644 --- a/Foundation/testsuite/src/TimedNotificationQueueTest.cpp +++ b/Foundation/testsuite/src/TimedNotificationQueueTest.cpp @@ -45,7 +45,7 @@ namespace } -TimedNotificationQueueTest::TimedNotificationQueueTest(const std::string& name): CppUnit::TestCase(name) +TimedNotificationQueueTest::TimedNotificationQueueTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/TimerTest.cpp b/Foundation/testsuite/src/TimerTest.cpp index ecdef30be..887ca9ae6 100644 --- a/Foundation/testsuite/src/TimerTest.cpp +++ b/Foundation/testsuite/src/TimerTest.cpp @@ -23,7 +23,7 @@ using Poco::Thread; using Poco::Stopwatch; -TimerTest::TimerTest(const std::string& name): CppUnit::TestCase(name) +TimerTest::TimerTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/TimespanTest.cpp b/Foundation/testsuite/src/TimespanTest.cpp index 15e8afc73..c05d2cdd0 100644 --- a/Foundation/testsuite/src/TimespanTest.cpp +++ b/Foundation/testsuite/src/TimespanTest.cpp @@ -19,7 +19,7 @@ using Poco::Timespan; -TimespanTest::TimespanTest(const std::string& name): CppUnit::TestCase(name) +TimespanTest::TimespanTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/TimestampTest.cpp b/Foundation/testsuite/src/TimestampTest.cpp index 13679f0ff..4e43a3419 100644 --- a/Foundation/testsuite/src/TimestampTest.cpp +++ b/Foundation/testsuite/src/TimestampTest.cpp @@ -21,7 +21,7 @@ using Poco::Timestamp; using Poco::Thread; -TimestampTest::TimestampTest(const std::string& name): CppUnit::TestCase(name) +TimestampTest::TimestampTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/TimezoneTest.cpp b/Foundation/testsuite/src/TimezoneTest.cpp index 53446a1eb..f19b2a4a0 100644 --- a/Foundation/testsuite/src/TimezoneTest.cpp +++ b/Foundation/testsuite/src/TimezoneTest.cpp @@ -20,7 +20,7 @@ using Poco::Timezone; -TimezoneTest::TimezoneTest(const std::string& name): CppUnit::TestCase(name) +TimezoneTest::TimezoneTest(const std::string& rName): CppUnit::TestCase(rName) { } @@ -32,10 +32,10 @@ TimezoneTest::~TimezoneTest() void TimezoneTest::testTimezone() { - std::string name = Timezone::name(); + std::string timezoneName = Timezone::name(); std::string stdName = Timezone::standardName(); std::string dstName = Timezone::dstName(); - std::cout << "Timezone Names: " << name << ", " << stdName << ", " << dstName << std::endl; + std::cout << "Timezone Names: " << timezoneName << ", " << stdName << ", " << dstName << std::endl; int utcOffset = Timezone::utcOffset(); std::cout << "UTC Offset: " << utcOffset << std::endl; int dst = Timezone::dst(); diff --git a/Foundation/testsuite/src/TuplesTest.cpp b/Foundation/testsuite/src/TuplesTest.cpp index 241f19589..703d19121 100644 --- a/Foundation/testsuite/src/TuplesTest.cpp +++ b/Foundation/testsuite/src/TuplesTest.cpp @@ -46,7 +46,7 @@ using Poco::Int32; using Poco::UInt32; -TuplesTest::TuplesTest(const std::string& name): CppUnit::TestCase(name) +TuplesTest::TuplesTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/TypeListTest.cpp b/Foundation/testsuite/src/TypeListTest.cpp index 02bcdd2b0..6c81f2103 100644 --- a/Foundation/testsuite/src/TypeListTest.cpp +++ b/Foundation/testsuite/src/TypeListTest.cpp @@ -51,7 +51,7 @@ using Poco::UInt32; using Poco::Void; -TypeListTest::TypeListTest(const std::string& name): CppUnit::TestCase(name) +TypeListTest::TypeListTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/URIStreamOpenerTest.cpp b/Foundation/testsuite/src/URIStreamOpenerTest.cpp index 80ddb7452..bfb98f98a 100644 --- a/Foundation/testsuite/src/URIStreamOpenerTest.cpp +++ b/Foundation/testsuite/src/URIStreamOpenerTest.cpp @@ -46,7 +46,7 @@ namespace } -URIStreamOpenerTest::URIStreamOpenerTest(const std::string& name): CppUnit::TestCase(name) +URIStreamOpenerTest::URIStreamOpenerTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/URITest.cpp b/Foundation/testsuite/src/URITest.cpp index e7753f7e2..47da518e7 100644 --- a/Foundation/testsuite/src/URITest.cpp +++ b/Foundation/testsuite/src/URITest.cpp @@ -21,7 +21,7 @@ using Poco::URI; using Poco::Path; -URITest::URITest(const std::string& name): CppUnit::TestCase(name) +URITest::URITest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/UTF8StringTest.cpp b/Foundation/testsuite/src/UTF8StringTest.cpp index 1f14fea93..ace9cda1a 100644 --- a/Foundation/testsuite/src/UTF8StringTest.cpp +++ b/Foundation/testsuite/src/UTF8StringTest.cpp @@ -19,7 +19,7 @@ using Poco::UTF8; -UTF8StringTest::UTF8StringTest(const std::string& name): CppUnit::TestCase(name) +UTF8StringTest::UTF8StringTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/UUIDGeneratorTest.cpp b/Foundation/testsuite/src/UUIDGeneratorTest.cpp index 8e69d3e6d..25bf41e62 100644 --- a/Foundation/testsuite/src/UUIDGeneratorTest.cpp +++ b/Foundation/testsuite/src/UUIDGeneratorTest.cpp @@ -23,7 +23,7 @@ using Poco::UUIDGenerator; using Poco::UUID; -UUIDGeneratorTest::UUIDGeneratorTest(const std::string& name): CppUnit::TestCase(name) +UUIDGeneratorTest::UUIDGeneratorTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/UUIDTest.cpp b/Foundation/testsuite/src/UUIDTest.cpp index 613fc0468..4a6b2cb44 100644 --- a/Foundation/testsuite/src/UUIDTest.cpp +++ b/Foundation/testsuite/src/UUIDTest.cpp @@ -20,7 +20,7 @@ using Poco::UUID; -UUIDTest::UUIDTest(const std::string& name): CppUnit::TestCase(name) +UUIDTest::UUIDTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/UnicodeConverterTest.cpp b/Foundation/testsuite/src/UnicodeConverterTest.cpp index 8e8cfbae0..e638513a4 100644 --- a/Foundation/testsuite/src/UnicodeConverterTest.cpp +++ b/Foundation/testsuite/src/UnicodeConverterTest.cpp @@ -27,7 +27,7 @@ using Poco::UTF32Char; using Poco::UTF32String; -UnicodeConverterTest::UnicodeConverterTest(const std::string& name): CppUnit::TestCase(name) +UnicodeConverterTest::UnicodeConverterTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/UniqueExpireCacheTest.cpp b/Foundation/testsuite/src/UniqueExpireCacheTest.cpp index 9b95f293b..ddab2cd72 100644 --- a/Foundation/testsuite/src/UniqueExpireCacheTest.cpp +++ b/Foundation/testsuite/src/UniqueExpireCacheTest.cpp @@ -47,7 +47,7 @@ typedef AccessExpirationDecorator DIntVal; #define DURWAIT 300 -UniqueExpireCacheTest::UniqueExpireCacheTest(const std::string& name): CppUnit::TestCase(name) +UniqueExpireCacheTest::UniqueExpireCacheTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/UniqueExpireLRUCacheTest.cpp b/Foundation/testsuite/src/UniqueExpireLRUCacheTest.cpp index cac8e683f..253e1ae3d 100644 --- a/Foundation/testsuite/src/UniqueExpireLRUCacheTest.cpp +++ b/Foundation/testsuite/src/UniqueExpireLRUCacheTest.cpp @@ -48,7 +48,7 @@ typedef AccessExpirationDecorator DIntVal; #define DURWAIT 300 -UniqueExpireLRUCacheTest::UniqueExpireLRUCacheTest(const std::string& name): CppUnit::TestCase(name) +UniqueExpireLRUCacheTest::UniqueExpireLRUCacheTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/VarTest.cpp b/Foundation/testsuite/src/VarTest.cpp index 10d7d6271..b31c96f01 100644 --- a/Foundation/testsuite/src/VarTest.cpp +++ b/Foundation/testsuite/src/VarTest.cpp @@ -58,7 +58,7 @@ private: }; -VarTest::VarTest(const std::string& name): CppUnit::TestCase(name) +VarTest::VarTest(const std::string& rName): CppUnit::TestCase(rName) { } diff --git a/Foundation/testsuite/src/ZLibTest.cpp b/Foundation/testsuite/src/ZLibTest.cpp index c7dad81bf..fb81367ba 100644 --- a/Foundation/testsuite/src/ZLibTest.cpp +++ b/Foundation/testsuite/src/ZLibTest.cpp @@ -30,7 +30,7 @@ using Poco::DeflatingStreamBuf; using Poco::StreamCopier; -ZLibTest::ZLibTest(const std::string& name): CppUnit::TestCase(name) +ZLibTest::ZLibTest(const std::string& rName): CppUnit::TestCase(rName) { }