typedef: added more tests. ticket: #2375

This commit is contained in:
Daniel Marjamäki 2011-01-02 07:42:47 +01:00
parent 4ec9d418ff
commit 320604f073
1 changed files with 61 additions and 0 deletions

View File

@ -229,6 +229,7 @@ private:
TEST_CASE(simplifyTypedef69); // ticket #2348
TEST_CASE(simplifyTypedef70); // ticket #2348
TEST_CASE(simplifyTypedef71); // ticket #2348
TEST_CASE(simplifyTypedef72); // ticket #2375
TEST_CASE(simplifyTypedefFunction1);
TEST_CASE(simplifyTypedefFunction2); // ticket #1685
@ -4695,6 +4696,66 @@ private:
}
}
void simplifyTypedef72() // ticket #2374
{
// inline operator
{
const char code[] = "class Fred {\n"
" typedef int* (Fred::*F);\n"
" operator F() const { }\n"
"};\n";
const std::string expected = "class Fred { "
"; "
"operator int * * ( ) const { } "
"} ;";
ASSERT_EQUALS(expected, sizeof_(code));
ASSERT_EQUALS("", errout.str());
}
// inline local variable
{
const char code[] = "class Fred {\n"
" typedef int INT;\n"
" void f1() const { INT i; }\n"
"};\n";
const std::string expected = "class Fred { "
"; "
"void f1 ( ) const { int i ; } "
"} ;";
ASSERT_EQUALS(expected, sizeof_(code));
ASSERT_EQUALS("", errout.str());
}
// out of line member variable
{
const char code[] = "class Fred {\n"
" typedef int INT;\n"
" void f1() const;\n"
"};\n"
"void Fred::f1() const { INT i; }\n";
const std::string expected = "class Fred { "
"; "
"void f1 ( ) const ; "
"} ; "
"void Fred :: f1 ( ) const { int i ; }";
TODO_ASSERT_EQUALS(expected, sizeof_(code));
ASSERT_EQUALS("", errout.str());
}
// out of line operator
{
const char code[] = "class Fred {\n"
" typedef int* (Fred::*F);\n"
" operator F() const;\n"
"};\n"
"Fred::operator F() const { }\n";
const std::string expected = "class Fred { "
"; "
"operator int * * ( ) const ; "
"} ; "
"Fred :: operator int * * ( ) const { } ";
TODO_ASSERT_EQUALS(expected, sizeof_(code));
ASSERT_EQUALS("", errout.str());
}
}
void simplifyTypedefFunction1()
{
{