TestTokenizer: Renamed test functions so they match the function names used in the Tokenizer (simplifyRoundCurlyParentheses)

This commit is contained in:
Daniel Marjamäki 2013-04-19 06:42:09 +02:00
parent e3be600479
commit 8d9ad2ae0d
1 changed files with 2 additions and 2 deletions

View File

@ -451,7 +451,7 @@ private:
TEST_CASE(simplifyCompoundAssignment); TEST_CASE(simplifyCompoundAssignment);
// x = ({ 123; }); => { x = 123; } // x = ({ 123; }); => { x = 123; }
TEST_CASE(simplifyAssignmentBlock); TEST_CASE(simplifyRoundCurlyParentheses);
TEST_CASE(simplifyOperatorName1); TEST_CASE(simplifyOperatorName1);
TEST_CASE(simplifyOperatorName2); TEST_CASE(simplifyOperatorName2);
@ -7287,7 +7287,7 @@ private:
ASSERT_EQUALS("; x = g ( ) ; f ( x ) ;", tokenizeAndStringify(";f(x=g());")); ASSERT_EQUALS("; x = g ( ) ; f ( x ) ;", tokenizeAndStringify(";f(x=g());"));
} }
void simplifyAssignmentBlock() { void simplifyRoundCurlyParentheses() {
ASSERT_EQUALS("; x = 123 ;", tokenizeAndStringify(";x=({123;});")); ASSERT_EQUALS("; x = 123 ;", tokenizeAndStringify(";x=({123;});"));
ASSERT_EQUALS("; x = y ;", tokenizeAndStringify(";x=({y;});")); ASSERT_EQUALS("; x = y ;", tokenizeAndStringify(";x=({y;});"));
} }