Skip to content
Snippets Groups Projects
Commit 36b7b0ef authored by Gemma Guest's avatar Gemma Guest
Browse files

Minor renaming of tests for clarity

Re #26536
parent 7357134a
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ public:
verifyAndClear();
}
void testMainPresenterUpdatedWhenInstrumentChangedRequested() {
void testMainPresenterUpdatedWhenChangeInstrumentRequested() {
auto presenter = makePresenter();
auto const instrument = std::string("POLREF");
EXPECT_CALL(m_mainPresenter, notifyChangeInstrumentRequested(instrument))
......
......@@ -188,7 +188,7 @@ public:
verifyAndClear();
}
void testInstrumentChangedRequestedUpdatesInstrumentInModel() {
void testChangeInstrumentRequestedUpdatesInstrumentInModel() {
auto presenter = makePresenter();
auto const instrument = std::string("POLREF");
presenter.notifyChangeInstrumentRequested(instrument);
......@@ -196,7 +196,7 @@ public:
verifyAndClear();
}
void testInstrumentChangedRequestedUpdatesInstrumentInChildPresenters() {
void testChangeInstrumentRequestedUpdatesInstrumentInChildPresenters() {
auto presenter = makePresenter();
auto const instrument = std::string("POLREF");
EXPECT_CALL(*m_batchPresenters[0], notifyInstrumentChanged(instrument))
......
......@@ -413,7 +413,7 @@ public:
verifyAndClear();
}
void testInstrumentChangedRequestedGetsInstrumentAndNotifiesMainPresenter() {
void testChangeInstrumentRequestedGetsInstrumentAndNotifiesMainPresenter() {
auto presenter = makePresenter();
auto const instrument = std::string("TEST-instrumnet");
expectSearchInstrument(instrument);
......@@ -423,7 +423,7 @@ public:
verifyAndClear();
}
void testInstrumentChangedRequestedWithGivenNameNotifiesMainPresenter() {
void testChangeInstrumentRequestedWithGivenNameNotifiesMainPresenter() {
auto presenter = makePresenter();
auto const instrument = std::string("TEST-instrumnet");
EXPECT_CALL(m_mainPresenter, notifyChangeInstrumentRequested(instrument))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment