mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-19 20:18:49 +00:00
f0de128449
Signed-off-by: Vladislav Shchapov <vladislav@shchapov.ru>
35 lines
1.2 KiB
C++
35 lines
1.2 KiB
C++
// Formatting library for C++ - tests of formatters for standard library types
|
|
//
|
|
// Copyright (c) 2012 - present, Victor Zverovich
|
|
// All rights reserved.
|
|
//
|
|
// For the license information refer to format.h.
|
|
|
|
#include "fmt/std.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
TEST(std_test, path) {
|
|
#ifdef __cpp_lib_filesystem
|
|
EXPECT_EQ(fmt::format("{:8}", std::filesystem::path("foo")), "\"foo\" ");
|
|
EXPECT_EQ(fmt::format("{}", std::filesystem::path("foo\"bar.txt")),
|
|
"\"foo\\\"bar.txt\"");
|
|
|
|
# ifdef _WIN32
|
|
// File.txt in Russian.
|
|
const wchar_t unicode_path[] = {0x424, 0x430, 0x439, 0x43b, 0x2e,
|
|
0x74, 0x78, 0x74, 0};
|
|
const char unicode_u8path[] = {'"', char(0xd0), char(0xa4), char(0xd0),
|
|
char(0xb0), char(0xd0), char(0xb9), char(0xd0),
|
|
char(0xbb), '.', 't', 'x',
|
|
't', '"', '\0'};
|
|
EXPECT_EQ(fmt::format("{}", std::filesystem::path(unicode_path)),
|
|
unicode_u8path);
|
|
# endif
|
|
#endif
|
|
}
|
|
|
|
TEST(std_test, thread_id) {
|
|
EXPECT_FALSE(fmt::format("{}", std::this_thread::get_id()).empty());
|
|
}
|