add test case "Spaces and Tabs ignored"
This commit is contained in:
parent
623cef92a8
commit
f746b5c69e
1 changed files with 35 additions and 16 deletions
|
@ -203,20 +203,39 @@ TEST_CASE("NAMEOF_FULL") {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_CASE("Spaces are ignored") {
|
TEST_CASE("Spaces and Tabs are ignored") {
|
||||||
// variable
|
SECTION("Spaces") {
|
||||||
REQUIRE(std::strcmp(NAMEOF( (&somevar)->somefield ), "somefield") == 0);
|
// variable
|
||||||
REQUIRE(std::strcmp(NAMEOF_FULL( (&somevar)->somefield ), "(&somevar)->somefield") == 0);
|
REQUIRE(std::strcmp(NAMEOF( (&somevar)->somefield ), "somefield") == 0);
|
||||||
// type
|
REQUIRE(std::strcmp(NAMEOF_FULL( (&somevar)->somefield ), "(&somevar)->somefield") == 0);
|
||||||
REQUIRE(std::strcmp(NAMEOF( std::string ), "string") == 0);
|
// type
|
||||||
REQUIRE(std::strcmp(NAMEOF_FULL( std::string ), "std::string") == 0);
|
REQUIRE(std::strcmp(NAMEOF( std::string ), "string") == 0);
|
||||||
// function
|
REQUIRE(std::strcmp(NAMEOF_FULL( std::string ), "std::string") == 0);
|
||||||
REQUIRE(std::strcmp(NAMEOF( &SomeStruct::SomeMethod2 ), "SomeMethod2") == 0);
|
// function
|
||||||
REQUIRE(std::strcmp(NAMEOF_FULL( &SomeStruct::SomeMethod2 ), "&SomeStruct::SomeMethod2") == 0);
|
REQUIRE(std::strcmp(NAMEOF( &SomeStruct::SomeMethod2 ), "SomeMethod2") == 0);
|
||||||
// enum
|
REQUIRE(std::strcmp(NAMEOF_FULL( &SomeStruct::SomeMethod2 ), "&SomeStruct::SomeMethod2") == 0);
|
||||||
REQUIRE(std::strcmp(NAMEOF( Color::RED ), "RED") == 0);
|
// enum
|
||||||
REQUIRE(std::strcmp(NAMEOF_FULL( Color::RED ), "Color::RED") == 0);
|
REQUIRE(std::strcmp(NAMEOF( Color::RED ), "RED") == 0);
|
||||||
// macros
|
REQUIRE(std::strcmp(NAMEOF_FULL( Color::RED ), "Color::RED") == 0);
|
||||||
REQUIRE(std::strcmp(NAMEOF( __cplusplus ), "__cplusplus") == 0);
|
// macros
|
||||||
REQUIRE(std::strcmp(NAMEOF_FULL( __cplusplus ), "__cplusplus") == 0);
|
REQUIRE(std::strcmp(NAMEOF( __cplusplus ), "__cplusplus") == 0);
|
||||||
|
REQUIRE(std::strcmp(NAMEOF_FULL( __cplusplus ), "__cplusplus") == 0);
|
||||||
|
}
|
||||||
|
SECTION("Tabs") {
|
||||||
|
// variable
|
||||||
|
REQUIRE(std::strcmp(NAMEOF( (&somevar)->somefield ), "somefield") == 0);
|
||||||
|
REQUIRE(std::strcmp(NAMEOF_FULL( (&somevar)->somefield ), "(&somevar)->somefield") == 0);
|
||||||
|
// type
|
||||||
|
REQUIRE(std::strcmp(NAMEOF( std::string ), "string") == 0);
|
||||||
|
REQUIRE(std::strcmp(NAMEOF_FULL( std::string ), "std::string") == 0);
|
||||||
|
// function
|
||||||
|
REQUIRE(std::strcmp(NAMEOF( &SomeStruct::SomeMethod2 ), "SomeMethod2") == 0);
|
||||||
|
REQUIRE(std::strcmp(NAMEOF_FULL( &SomeStruct::SomeMethod2 ), "&SomeStruct::SomeMethod2") == 0);
|
||||||
|
// enum
|
||||||
|
REQUIRE(std::strcmp(NAMEOF( Color::RED ), "RED") == 0);
|
||||||
|
REQUIRE(std::strcmp(NAMEOF_FULL( Color::RED ), "Color::RED") == 0);
|
||||||
|
// macros
|
||||||
|
REQUIRE(std::strcmp(NAMEOF( __cplusplus ), "__cplusplus") == 0);
|
||||||
|
REQUIRE(std::strcmp(NAMEOF_FULL( __cplusplus ), "__cplusplus") == 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue