mirror of
https://github.com/Neargye/magic_enum.git
synced 2026-01-11 23:54:19 +00:00
update test
This commit is contained in:
parent
6a977cbe9a
commit
cd01fa1ba4
1 changed files with 5 additions and 0 deletions
|
|
@ -333,4 +333,9 @@ TEST_CASE("type_traits") {
|
|||
REQUIRE(magic_enum::is_scoped_enum_v<Numbers>);
|
||||
REQUIRE_FALSE(magic_enum::is_scoped_enum_v<Directions>);
|
||||
REQUIRE_FALSE(magic_enum::is_scoped_enum_v<number>);
|
||||
|
||||
REQUIRE(magic_enum::is_fixed_enum_v<Color>);
|
||||
REQUIRE(magic_enum::is_fixed_enum_v<Numbers>);
|
||||
REQUIRE_FALSE(magic_enum::is_fixed_enum_v<Directions>);
|
||||
REQUIRE(magic_enum::is_fixed_enum_v<number>);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue