00001 #ifndef ASG_TOOLS__MESSAGE_PRINTER_MOCK_H
00002 #define ASG_TOOLS__MESSAGE_PRINTER_MOCK_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include <AsgTools/IMessagePrinter.h>
00015 #include <gmock/gmock.h>
00016
00017 #ifdef ROOTCORE
00018
00019 namespace asg
00020 {
00021 struct MessagePrinterMock : public IMessagePrinter
00022 {
00023 MOCK_METHOD3 (print, void (MSG::Level, const std::string&, const std::string&));
00024 };
00025 }
00026
00027 #endif
00028
00029 #endif