@@ -242,7 +242,7 @@ class StateModelTest : public StateModel, public testing::Test {
242242
243243 // / @brief Manually construct the event and state dictionaries.
244244 // / This allows testing without running startModel.
245- void initDictionaries () {
245+ void initTestDictionaries () {
246246 ASSERT_NO_THROW (defineEvents ());
247247 ASSERT_NO_THROW (verifyEvents ());
248248 ASSERT_NO_THROW (defineStates ());
@@ -509,7 +509,7 @@ TEST_F(StateModelTest, runBeforeStart) {
509509// / a normal conclusion.
510510TEST_F (StateModelTest, transitionWithEnd) {
511511 // Init dictionaries manually, normally done by startModel.
512- initDictionaries ();
512+ initTestDictionaries ();
513513
514514 // call transition to move from NEW_ST to DUMMY_ST with START_EVT
515515 EXPECT_NO_THROW (transition (DUMMY_ST, START_EVT));
@@ -534,7 +534,7 @@ TEST_F(StateModelTest, transitionWithEnd) {
534534// / failed conclusion.
535535TEST_F (StateModelTest, transitionWithAbort) {
536536 // Init dictionaries manually, normally done by startModel.
537- initDictionaries ();
537+ initTestDictionaries ();
538538
539539 // call transition to move from NEW_ST to DUMMY_ST with START_EVT
540540 EXPECT_NO_THROW (transition (DUMMY_ST, START_EVT));
@@ -559,7 +559,7 @@ TEST_F(StateModelTest, transitionWithAbort) {
559559// / work properly.
560560TEST_F (StateModelTest, doFlags) {
561561 // Init dictionaries manually, normally done by startModel.
562- initDictionaries ();
562+ initTestDictionaries ();
563563
564564 // Verify that "do" flags are false.
565565 EXPECT_FALSE (doOnEntry ());
@@ -590,7 +590,7 @@ TEST_F(StateModelTest, doFlags) {
590590// / the model is running but not after.
591591TEST_F (StateModelTest, statusMethods) {
592592 // Init dictionaries manually, normally done by startModel.
593- initDictionaries ();
593+ initTestDictionaries ();
594594
595595 // After construction, state model is "new", all others should be false.
596596 EXPECT_TRUE (isModelNew ());
0 commit comments