Skip to content

Commit

Permalink
Rename some test methods
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jan 5, 2018
1 parent a01d8da commit e3daac4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/src/core/testqgslayoutlabel.cpp
Expand Up @@ -46,10 +46,10 @@ class TestQgsLayoutLabel : public QObject
// test simple expression evaluation
void evaluation();
// test expression evaluation when a feature is set
void feature_evaluation();
void feature_evaluation2();
void featureEvaluationUsingAtlas();
void featureEvaluationUsingContext();
// test page expressions
void page_evaluation();
void pageEvaluation();
void marginMethods(); //tests getting/setting margins
void render();
void renderAsHtml();
Expand Down Expand Up @@ -145,7 +145,7 @@ void TestQgsLayoutLabel::evaluation()
}
}

void TestQgsLayoutLabel::feature_evaluation()
void TestQgsLayoutLabel::featureEvaluationUsingAtlas()
{
QgsPrintLayout l( QgsProject::instance() );
l.initializeDefaults();
Expand Down Expand Up @@ -175,7 +175,7 @@ void TestQgsLayoutLabel::feature_evaluation()
}
}

void TestQgsLayoutLabel::feature_evaluation2()
void TestQgsLayoutLabel::featureEvaluationUsingContext()
{
// just using context, no atlas
QgsLayout l( QgsProject::instance() );
Expand Down Expand Up @@ -209,7 +209,7 @@ void TestQgsLayoutLabel::feature_evaluation2()
}
}

void TestQgsLayoutLabel::page_evaluation()
void TestQgsLayoutLabel::pageEvaluation()
{
QgsLayout l( QgsProject::instance() );
l.initializeDefaults();
Expand Down

0 comments on commit e3daac4

Please sign in to comment.