#include <cppunit/ui/text/TestRunner.h>#include <cppunit/TextOutputter.h>#include <cppunit/extensions/TestFactoryRegistry.h>#include <cppunit/extensions/HelperMacros.h>#include <cppunit/TestAssert.h>#include <string>#include <map>#include <iostream>#include <cstdlib>#include <coil/Logger.h>#include <coil/Task.h>#include <coil/TimeMeasure.h>#include <coil/stringutil.h>#include <coil/Time.h>#include <coil/Properties.h>#include <coil/Mutex.h>#include <coil/Guard.h>
Go to the source code of this file.
Classes | |
| class | Logger::LogCreator |
| class | Logger::LoggerTests |
| Logger test. More... | |
| class | Logger::LogOut |
| class | Logger::LogOut2 |
| class | Logger::LogOutCreator |
Namespaces | |
| namespace | coil |
Common Object Interface Layer. | |
| namespace | Logger |
Defines | |
| #define | Logger_cpp |
| #define | RTC_LOG(LV, fmt) |
| #define | RTC_TRACE(fmt) RTC_LOG(TRACE_LEVEL, fmt) |
Functions | |
| CPPUNIT_TEST_SUITE_REGISTRATION (Logger::LoggerTests) | |
| #define Logger_cpp |
Definition at line 18 of file LoggerTests.cpp.
| #define RTC_LOG | ( | LV, | |
| fmt | |||
| ) |
if (m_out.isValid(LV)) \ { \ m_out.lock(); \ m_out.level(LV) << ::coil::sprintf fmt << std::endl; \ m_out.unlock(); \ }
Definition at line 205 of file LoggerTests.cpp.
Definition at line 213 of file LoggerTests.cpp.
| CPPUNIT_TEST_SUITE_REGISTRATION | ( | Logger::LoggerTests | ) |