mirror of
https://github.com/fmtlib/fmt.git
synced 2025-09-13 06:36:50 -04:00
Merge tests
This commit is contained in:
parent
c264e641ea
commit
d2ee5f2407
@ -433,16 +433,12 @@ TEST(StringViewTest, Compare) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
enum basic_enum {};
|
enum basic_enum {};
|
||||||
|
enum enum_with_underlying_type : char {};
|
||||||
|
|
||||||
TEST(CoreTest, ConvertToInt) {
|
TEST(CoreTest, ConvertToInt) {
|
||||||
EXPECT_FALSE((fmt::convert_to_int<char, char>::value));
|
EXPECT_FALSE((fmt::convert_to_int<char, char>::value));
|
||||||
EXPECT_FALSE((fmt::convert_to_int<const char*, char>::value));
|
EXPECT_FALSE((fmt::convert_to_int<const char*, char>::value));
|
||||||
EXPECT_TRUE((fmt::convert_to_int<basic_enum, char>::value));
|
EXPECT_TRUE((fmt::convert_to_int<basic_enum, char>::value));
|
||||||
}
|
|
||||||
|
|
||||||
enum enum_with_underlying_type : char {};
|
|
||||||
|
|
||||||
TEST(CoreTest, IsEnumConvertibleToInt) {
|
|
||||||
EXPECT_TRUE((fmt::convert_to_int<enum_with_underlying_type, char>::value));
|
EXPECT_TRUE((fmt::convert_to_int<enum_with_underlying_type, char>::value));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user