Skip to content
Snippets Groups Projects
Commit 75f39aa5 authored by Pranav Bahuguna's avatar Pranav Bahuguna
Browse files

Re #16983 Added tests for transmission runs settings

parent 536fb884
No related branches found
No related tags found
No related merge requests found
...@@ -85,6 +85,7 @@ public: ...@@ -85,6 +85,7 @@ public:
MOCK_CONST_METHOD0(getLambdaMax, std::string()); MOCK_CONST_METHOD0(getLambdaMax, std::string());
MOCK_CONST_METHOD0(getI0MonitorIndex, std::string()); MOCK_CONST_METHOD0(getI0MonitorIndex, std::string());
MOCK_CONST_METHOD0(getProcessingInstructions, std::string()); MOCK_CONST_METHOD0(getProcessingInstructions, std::string());
MOCK_CONST_METHOD0(getTransmissionRuns, std::string());
MOCK_CONST_METHOD1(setExpDefaults, void(const std::vector<std::string> &)); MOCK_CONST_METHOD1(setExpDefaults, void(const std::vector<std::string> &));
MOCK_CONST_METHOD1(setInstDefaults, void(const std::vector<double> &)); MOCK_CONST_METHOD1(setInstDefaults, void(const std::vector<double> &));
......
...@@ -144,6 +144,9 @@ public: ...@@ -144,6 +144,9 @@ public:
EXPECT_CALL(mockView, getProcessingInstructions()) EXPECT_CALL(mockView, getProcessingInstructions())
.Times(Exactly(1)) .Times(Exactly(1))
.WillOnce(Return("\"3,4\"")); .WillOnce(Return("\"3,4\""));
EXPECT_CALL(mockView, getTransmissionRuns())
.Times(Exactly(1))
.WillOnce(Return("INTER00013463.nxs,INTER00013464.nxs"));
auto options = presenter.getReductionOptions(); auto options = presenter.getReductionOptions();
std::vector<std::string> optionsVec; std::vector<std::string> optionsVec;
...@@ -166,6 +169,8 @@ public: ...@@ -166,6 +169,8 @@ public:
TS_ASSERT_EQUALS(optionsVec[15], "ScaleFactor=2"); TS_ASSERT_EQUALS(optionsVec[15], "ScaleFactor=2");
TS_ASSERT_EQUALS(optionsVec[16], "MomentumTransferStep=-0.02"); TS_ASSERT_EQUALS(optionsVec[16], "MomentumTransferStep=-0.02");
TS_ASSERT_EQUALS(optionsVec[17], "ProcessingInstructions=\"3,4\""); TS_ASSERT_EQUALS(optionsVec[17], "ProcessingInstructions=\"3,4\"");
TS_ASSERT_EQUALS(optionsVec[18], "FirstTransmissionRun=TRANS_INTER00013463.nxs");
TS_ASSERT_EQUALS(optionsVec[19], "SecondTransmissionRun=TRANS_INTER00013464.nxs");
TS_ASSERT(Mock::VerifyAndClearExpectations(&mockView)); TS_ASSERT(Mock::VerifyAndClearExpectations(&mockView));
} }
......
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