Newer
Older
#ifndef MANTID_CUSTOMINTERFACES_IMAGECORVIEWMOCK_H
#define MANTID_CUSTOMINTERFACES_IMAGECORVIEWMOCK_H
#include "MantidQtCustomInterfaces/Tomography/ITomographyIfaceView.h"
#include <gmock/gmock.h>
class MockImageCoRView : public MantidQt::CustomInterfaces::IImageCoRView {
public:
// void initParams(ImageStackPreParams ¶ms)
Federico Montesino Pouzols
committed
MOCK_METHOD1(setParams,
void(MantidQt::CustomInterfaces::ImageStackPreParams &));
// ImageStackPreParams userSelection() const;
MOCK_CONST_METHOD0(userSelection,
MantidQt::CustomInterfaces::ImageStackPreParams());
// void changeSelectionState(const SelectionState state);
MOCK_METHOD1(changeSelectionState, void(IImageCoRView::SelectionState));
// void showStack(const std::string &path);
MOCK_METHOD1(showStack, void(const std::string &));
// void showStack(const Mantid::API::WorkspaceGroup_sptr &ws);
MOCK_METHOD2(showStack, void(Mantid::API::WorkspaceGroup_sptr &, const std::string &));
// const Mantid::API::WorkspaceGroup_sptr stack() const;
MOCK_CONST_METHOD0(stack, const Mantid::API::WorkspaceGroup_sptr());
Federico Montesino Pouzols
committed
// void showProjection(const Mantid::API::WorkspaceGroup_sptr &wsg, size_t idx);
MOCK_METHOD2(showProjection, void(const Mantid::API::WorkspaceGroup_sptr &wsg, size_t idx));
// void userWarning(const std::string &warn, const std::string &description)
MOCK_METHOD2(userWarning,
void(const std::string &warn, const std::string &description));
// void userError(const std::string &err, const std::string &description)
MOCK_METHOD2(userError,
void(const std::string &err, const std::string &description));
Federico Montesino Pouzols
committed
// size_t currentImgIndex() const;
MOCK_CONST_METHOD0(currentImgIndex, size_t());
// void updateImgWithIndex(size_t idx)
MOCK_METHOD1(updateImgWithIndex, void(size_t));
// std::string askImgOrStackPath();
MOCK_METHOD0(askImgOrStackPath, std::string());
// void saveSettings() const {}
MOCK_CONST_METHOD0(saveSettings, void());
// void resetCoR()
MOCK_METHOD0(resetCoR, void());
// void resetROI()
MOCK_METHOD0(resetROI, void());
// void resetNormArea()
MOCK_METHOD0(resetNormArea, void());
};
#endif // MANTID_CUSTOMINTERFACES_IMAGECORVIEWMOCK_H