spdlog/tests/test_source_location.cpp

21 lines
634 B
C++
Raw Normal View History

#define SPDLOG_SOURCE_LOCATION
2023-09-16 06:06:21 +08:00
#include "includes.h"
#include "test_sink.h"
#if defined(SPDLOG_HAVE_STD_SOURCE_LOCATION) || defined(SPDLOG_HAVE_EXPERIMENTAL_SOURCE_LOCATION)
2023-09-16 06:06:21 +08:00
using spdlog::details::os::default_eol;
TEST_CASE("test_source_location", "[source_location]")
{
std::ostringstream oss;
auto oss_sink = std::make_shared<spdlog::sinks::ostream_sink_st>(oss);
spdlog::logger oss_logger("oss", oss_sink);
oss_logger.set_pattern("%s:%# %v");
2023-09-16 06:31:54 +08:00
2023-09-16 06:06:21 +08:00
oss_logger.info("Hello {}", "source location");
REQUIRE(oss.str() == std::string("test_source_location.cpp:16 Hello source location") + default_eol);
}
#endif