| 42 | } |
| 43 | |
| 44 | TEST(string_view_test, value_type) { |
| 45 | static_assert(std::is_same<fmt::string_view::value_type, char>::value, ""); |
| 46 | } |
| 47 | |
| 48 | TEST(string_view_test, ctor) { |
| 49 | EXPECT_STREQ(fmt::string_view("abc").data(), "abc"); |
nothing calls this directly
no test coverage detected