| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | // Formatting library for C++ - formatting library tests
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Copyright (c) 2012 - present, Victor Zverovich
 | 
					
						
							|  |  |  | // All rights reserved.
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2019-07-25 19:01:21 +03:00
										 |  |  | // For the license information refer to format.h.
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <string>
 | 
					
						
							| 
									
										
										
										
											2020-10-11 08:30:14 -07:00
										 |  |  | #include <type_traits>
 | 
					
						
							| 
									
										
										
										
											2020-11-29 19:59:11 +03:00
										 |  |  | #if __cplusplus >= 202002L
 | 
					
						
							|  |  |  | #  include <string_view>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-11 08:30:14 -07:00
										 |  |  | // Check that fmt/compile.h compiles with windows.h included before it.
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | #  include <windows.h>
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-25 19:01:21 +03:00
										 |  |  | #include "fmt/compile.h"
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | #include "gmock.h"
 | 
					
						
							|  |  |  | #include "gtest-extra.h"
 | 
					
						
							|  |  |  | #include "util.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // compiletime_prepared_parts_type_provider is useful only with relaxed
 | 
					
						
							|  |  |  | // constexpr.
 | 
					
						
							|  |  |  | #if FMT_USE_CONSTEXPR
 | 
					
						
							|  |  |  | template <unsigned EXPECTED_PARTS_COUNT, typename Format> | 
					
						
							|  |  |  | void check_prepared_parts_type(Format format) { | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   typedef fmt::detail::compiled_format_base<decltype(format)> provider; | 
					
						
							|  |  |  |   typedef fmt::detail::format_part<char> | 
					
						
							| 
									
										
										
										
											2019-09-01 14:57:36 -07:00
										 |  |  |       expected_parts_type[EXPECTED_PARTS_COUNT]; | 
					
						
							|  |  |  |   static_assert(std::is_same<typename provider::parts_container, | 
					
						
							|  |  |  |                              expected_parts_type>::value, | 
					
						
							|  |  |  |                 "CompileTimePreparedPartsTypeProvider test failed"); | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 06:22:13 -07:00
										 |  |  | TEST(CompileTest, CompileTimePreparedPartsTypeProvider) { | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  |   check_prepared_parts_type<1u>(FMT_STRING("text")); | 
					
						
							|  |  |  |   check_prepared_parts_type<1u>(FMT_STRING("{}")); | 
					
						
							|  |  |  |   check_prepared_parts_type<2u>(FMT_STRING("text{}")); | 
					
						
							|  |  |  |   check_prepared_parts_type<2u>(FMT_STRING("{}text")); | 
					
						
							|  |  |  |   check_prepared_parts_type<3u>(FMT_STRING("text{}text")); | 
					
						
							|  |  |  |   check_prepared_parts_type<3u>(FMT_STRING("{:{}.{}} {:{}}")); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   check_prepared_parts_type<3u>(FMT_STRING("{{{}}}"));   // '{', 'argument', '}'
 | 
					
						
							|  |  |  |   check_prepared_parts_type<2u>(FMT_STRING("text{{"));   // 'text', '{'
 | 
					
						
							|  |  |  |   check_prepared_parts_type<3u>(FMT_STRING("text{{ "));  // 'text', '{', ' '
 | 
					
						
							|  |  |  |   check_prepared_parts_type<2u>(FMT_STRING("}}text"));   // '}', text
 | 
					
						
							|  |  |  |   check_prepared_parts_type<2u>(FMT_STRING("text}}text"));  // 'text}', 'text'
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  |   check_prepared_parts_type<4u>( | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |       FMT_STRING("text{{}}text"));  // 'text', '{', '}', 'text'
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 06:22:13 -07:00
										 |  |  | TEST(CompileTest, PassStringLiteralFormat) { | 
					
						
							| 
									
										
										
										
											2020-06-23 14:03:37 -07:00
										 |  |  |   const auto prepared = fmt::detail::compile<int>("test {}"); | 
					
						
							| 
									
										
										
										
											2019-08-03 06:28:31 -07:00
										 |  |  |   EXPECT_EQ("test 42", fmt::format(prepared, 42)); | 
					
						
							| 
									
										
										
										
											2020-06-23 14:03:37 -07:00
										 |  |  |   const auto wprepared = fmt::detail::compile<int>(L"test {}"); | 
					
						
							| 
									
										
										
										
											2019-08-03 06:28:31 -07:00
										 |  |  |   EXPECT_EQ(L"test 42", fmt::format(wprepared, 42)); | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 06:22:13 -07:00
										 |  |  | TEST(CompileTest, FormatToArrayOfChars) { | 
					
						
							| 
									
										
										
										
											2019-05-21 21:03:57 +02:00
										 |  |  |   char buffer[32] = {0}; | 
					
						
							| 
									
										
										
										
											2020-06-23 14:03:37 -07:00
										 |  |  |   const auto prepared = fmt::detail::compile<int>("4{}"); | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::format_to(fmt::detail::make_checked(buffer, 32), prepared, 2); | 
					
						
							| 
									
										
										
										
											2019-05-21 21:03:57 +02:00
										 |  |  |   EXPECT_EQ(std::string("42"), buffer); | 
					
						
							|  |  |  |   wchar_t wbuffer[32] = {0}; | 
					
						
							| 
									
										
										
										
											2020-06-23 14:03:37 -07:00
										 |  |  |   const auto wprepared = fmt::detail::compile<int>(L"4{}"); | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::format_to(fmt::detail::make_checked(wbuffer, 32), wprepared, 2); | 
					
						
							| 
									
										
										
										
											2019-05-21 21:03:57 +02:00
										 |  |  |   EXPECT_EQ(std::wstring(L"42"), wbuffer); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 06:22:13 -07:00
										 |  |  | TEST(CompileTest, FormatToIterator) { | 
					
						
							| 
									
										
										
										
											2019-05-21 21:03:57 +02:00
										 |  |  |   std::string s(2, ' '); | 
					
						
							| 
									
										
										
										
											2020-06-23 14:03:37 -07:00
										 |  |  |   const auto prepared = fmt::detail::compile<int>("4{}"); | 
					
						
							| 
									
										
										
										
											2019-08-03 08:35:02 -07:00
										 |  |  |   fmt::format_to(s.begin(), prepared, 2); | 
					
						
							| 
									
										
										
										
											2019-05-21 21:03:57 +02:00
										 |  |  |   EXPECT_EQ("42", s); | 
					
						
							|  |  |  |   std::wstring ws(2, L' '); | 
					
						
							| 
									
										
										
										
											2020-06-23 14:03:37 -07:00
										 |  |  |   const auto wprepared = fmt::detail::compile<int>(L"4{}"); | 
					
						
							| 
									
										
										
										
											2019-08-03 08:35:02 -07:00
										 |  |  |   fmt::format_to(ws.begin(), wprepared, 2); | 
					
						
							| 
									
										
										
										
											2019-05-21 21:03:57 +02:00
										 |  |  |   EXPECT_EQ(L"42", ws); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 06:38:41 -07:00
										 |  |  | TEST(CompileTest, FormatToN) { | 
					
						
							|  |  |  |   char buf[5]; | 
					
						
							| 
									
										
										
										
											2020-06-23 14:03:37 -07:00
										 |  |  |   auto f = fmt::detail::compile<int>("{:10}"); | 
					
						
							| 
									
										
										
										
											2019-08-25 06:38:41 -07:00
										 |  |  |   auto result = fmt::format_to_n(buf, 5, f, 42); | 
					
						
							|  |  |  |   EXPECT_EQ(result.size, 10); | 
					
						
							|  |  |  |   EXPECT_EQ(result.out, buf + 5); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::string_view(buf, 5), "     "); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(CompileTest, FormattedSize) { | 
					
						
							| 
									
										
										
										
											2020-06-23 14:03:37 -07:00
										 |  |  |   auto f = fmt::detail::compile<int>("{:10}"); | 
					
						
							| 
									
										
										
										
											2019-08-25 06:38:41 -07:00
										 |  |  |   EXPECT_EQ(fmt::formatted_size(f, 42), 10); | 
					
						
							| 
									
										
										
										
											2019-05-21 21:03:57 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-09-01 11:48:01 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-24 10:54:49 +01:00
										 |  |  | TEST(CompileTest, MultipleTypes) { | 
					
						
							| 
									
										
										
										
											2020-06-23 14:03:37 -07:00
										 |  |  |   auto f = fmt::detail::compile<int, int>("{} {}"); | 
					
						
							| 
									
										
										
										
											2019-09-24 10:54:49 +01:00
										 |  |  |   EXPECT_EQ(fmt::format(f, 42, 42), "42 42"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-14 11:13:21 -07:00
										 |  |  | struct test_formattable {}; | 
					
						
							| 
									
										
										
										
											2019-09-01 11:48:01 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-01 12:12:19 -07:00
										 |  |  | FMT_BEGIN_NAMESPACE | 
					
						
							| 
									
										
										
										
											2020-07-14 11:13:21 -07:00
										 |  |  | template <> struct formatter<test_formattable> : formatter<const char*> { | 
					
						
							| 
									
										
										
										
											2020-06-23 12:05:37 -07:00
										 |  |  |   template <typename FormatContext> | 
					
						
							| 
									
										
										
										
											2020-07-14 11:13:21 -07:00
										 |  |  |   auto format(test_formattable, FormatContext& ctx) -> decltype(ctx.out()) { | 
					
						
							| 
									
										
										
										
											2019-09-01 11:48:01 -07:00
										 |  |  |     return formatter<const char*>::format("foo", ctx); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2019-09-01 12:12:19 -07:00
										 |  |  | FMT_END_NAMESPACE | 
					
						
							| 
									
										
										
										
											2019-09-01 11:48:01 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(CompileTest, FormatUserDefinedType) { | 
					
						
							| 
									
										
										
										
											2020-07-14 11:13:21 -07:00
										 |  |  |   auto f = fmt::detail::compile<test_formattable>("{}"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format(f, test_formattable()), "foo"); | 
					
						
							| 
									
										
										
										
											2019-09-01 11:48:01 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-09-01 14:57:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(CompileTest, EmptyFormatString) { | 
					
						
							| 
									
										
										
										
											2020-06-23 14:03:37 -07:00
										 |  |  |   auto f = fmt::detail::compile<>(""); | 
					
						
							| 
									
										
										
										
											2019-09-01 14:57:36 -07:00
										 |  |  |   EXPECT_EQ(fmt::format(f), ""); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-06-12 13:24:49 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef __cpp_if_constexpr
 | 
					
						
							| 
									
										
										
										
											2020-06-14 07:16:50 -07:00
										 |  |  | TEST(CompileTest, FormatDefault) { | 
					
						
							| 
									
										
										
										
											2020-06-12 13:24:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format(FMT_COMPILE("{}"), 42)); | 
					
						
							| 
									
										
										
										
											2020-06-14 07:16:50 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format(FMT_COMPILE("{}"), 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format(FMT_COMPILE("{}"), 42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format(FMT_COMPILE("{}"), 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("true", fmt::format(FMT_COMPILE("{}"), true)); | 
					
						
							|  |  |  |   EXPECT_EQ("x", fmt::format(FMT_COMPILE("{}"), 'x')); | 
					
						
							|  |  |  |   EXPECT_EQ("4.2", fmt::format(FMT_COMPILE("{}"), 4.2)); | 
					
						
							| 
									
										
										
										
											2020-06-12 13:24:49 -07:00
										 |  |  |   EXPECT_EQ("foo", fmt::format(FMT_COMPILE("{}"), "foo")); | 
					
						
							| 
									
										
										
										
											2020-06-14 07:16:50 -07:00
										 |  |  |   EXPECT_EQ("foo", fmt::format(FMT_COMPILE("{}"), std::string("foo"))); | 
					
						
							| 
									
										
										
										
											2020-07-14 11:13:21 -07:00
										 |  |  |   EXPECT_EQ("foo", fmt::format(FMT_COMPILE("{}"), test_formattable())); | 
					
						
							| 
									
										
										
										
											2020-06-23 12:05:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-17 06:35:33 -07:00
										 |  |  | TEST(CompileTest, FormatWideString) { | 
					
						
							|  |  |  |   EXPECT_EQ(L"42", fmt::format(FMT_COMPILE(L"{}"), 42)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-23 12:05:37 -07:00
										 |  |  | TEST(CompileTest, FormatSpecs) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format(FMT_COMPILE("{:x}"), 0x42)); | 
					
						
							| 
									
										
										
										
											2020-06-12 13:24:49 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-06-14 11:04:41 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-10 09:13:13 -07:00
										 |  |  | TEST(CompileTest, DynamicWidth) { | 
					
						
							|  |  |  |   EXPECT_EQ("  42foo  ", | 
					
						
							|  |  |  |             fmt::format(FMT_COMPILE("{:{}}{:{}}"), 42, 4, "foo", 5)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-20 08:50:02 -07:00
										 |  |  | TEST(CompileTest, FormatTo) { | 
					
						
							| 
									
										
										
										
											2020-09-20 06:59:01 -07:00
										 |  |  |   char buf[8]; | 
					
						
							|  |  |  |   auto end = fmt::format_to(buf, FMT_COMPILE("{}"), 42); | 
					
						
							|  |  |  |   *end = '\0'; | 
					
						
							|  |  |  |   EXPECT_STREQ("42", buf); | 
					
						
							|  |  |  |   end = fmt::format_to(buf, FMT_COMPILE("{:x}"), 42); | 
					
						
							|  |  |  |   *end = '\0'; | 
					
						
							|  |  |  |   EXPECT_STREQ("2a", buf); | 
					
						
							| 
									
										
										
										
											2020-06-20 08:50:02 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-15 17:28:06 +03:00
										 |  |  | TEST(CompileTest, FormatToNWithCompileMacro) { | 
					
						
							| 
									
										
										
										
											2020-09-20 06:59:01 -07:00
										 |  |  |   constexpr auto buffer_size = 8; | 
					
						
							|  |  |  |   char buffer[buffer_size]; | 
					
						
							|  |  |  |   auto res = fmt::format_to_n(buffer, buffer_size, FMT_COMPILE("{}"), 42); | 
					
						
							|  |  |  |   *res.out = '\0'; | 
					
						
							|  |  |  |   EXPECT_STREQ("42", buffer); | 
					
						
							|  |  |  |   res = fmt::format_to_n(buffer, buffer_size, FMT_COMPILE("{:x}"), 42); | 
					
						
							|  |  |  |   *res.out = '\0'; | 
					
						
							|  |  |  |   EXPECT_STREQ("2a", buffer); | 
					
						
							| 
									
										
										
										
											2020-09-15 17:28:06 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-14 11:04:41 -07:00
										 |  |  | TEST(CompileTest, TextAndArg) { | 
					
						
							|  |  |  |   EXPECT_EQ(">>>42<<<", fmt::format(FMT_COMPILE(">>>{}<<<"), 42)); | 
					
						
							| 
									
										
										
										
											2020-07-11 08:35:26 -07:00
										 |  |  |   EXPECT_EQ("42!", fmt::format(FMT_COMPILE("{}!"), 42)); | 
					
						
							| 
									
										
										
										
											2020-06-14 11:04:41 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-06-12 13:24:49 -07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-11-29 19:59:11 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if __cplusplus >= 202002L
 | 
					
						
							|  |  |  | template <size_t max_string_length> struct test_string { | 
					
						
							|  |  |  |   template <typename T> constexpr bool operator==(const T& rhs) const noexcept { | 
					
						
							|  |  |  |     return (std::string_view(rhs).compare(buffer.data()) == 0); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   std::array<char, max_string_length> buffer{}; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <size_t max_string_length, typename... Args> | 
					
						
							|  |  |  | consteval auto test_format(auto format, const Args&... args) { | 
					
						
							|  |  |  |   test_string<max_string_length> string{}; | 
					
						
							|  |  |  |   fmt::format_to(string.buffer.data(), format, args...); | 
					
						
							|  |  |  |   return string; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(CompileTimeFormattingTest, Bool) { | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     constexpr auto result = test_format<5>(FMT_COMPILE("{}"), true); | 
					
						
							|  |  |  |     EXPECT_EQ(result, "true"); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     constexpr auto result = test_format<6>(FMT_COMPILE("{}"), false); | 
					
						
							|  |  |  |     EXPECT_EQ(result, "false"); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(CompileTimeFormattingTest, Integer) { | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     constexpr auto result = test_format<3>(FMT_COMPILE("{}"), 42); | 
					
						
							|  |  |  |     EXPECT_EQ(result, "42"); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     constexpr auto result = test_format<4>(FMT_COMPILE("{}"), 420); | 
					
						
							|  |  |  |     EXPECT_EQ(result, "420"); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     constexpr auto result = test_format<6>(FMT_COMPILE("{} {}"), 42, 42); | 
					
						
							|  |  |  |     EXPECT_EQ(result, "42 42"); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     constexpr auto result = | 
					
						
							|  |  |  |         test_format<6>(FMT_COMPILE("{} {}"), uint32_t{42}, uint64_t{42}); | 
					
						
							|  |  |  |     EXPECT_EQ(result, "42 42"); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(CompileTimeFormattingTest, String) { | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     constexpr auto result = test_format<3>(FMT_COMPILE("{}"), "42"); | 
					
						
							|  |  |  |     EXPECT_EQ(result, "42"); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     constexpr auto result = | 
					
						
							|  |  |  |         test_format<17>(FMT_COMPILE("{} is {}"), "The answer", "42"); | 
					
						
							|  |  |  |     EXPECT_EQ(result, "The answer is 42"); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(CompileTimeFormattingTest, Combination) { | 
					
						
							|  |  |  |   constexpr auto result = | 
					
						
							|  |  |  |       test_format<18>(FMT_COMPILE("{}, {}, {}"), 420, true, "answer"); | 
					
						
							|  |  |  |   EXPECT_EQ(result, "420, true, answer"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 |