mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
44 lines
1.4 KiB
C
44 lines
1.4 KiB
C
|
|
/*----------------------------------------------------------------------------*/
|
||
|
|
/* Copyright (c) FIRST 2017. All Rights Reserved. */
|
||
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
||
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
||
|
|
/* the project. */
|
||
|
|
/*----------------------------------------------------------------------------*/
|
||
|
|
|
||
|
|
#ifndef NT_TEST_MESSAGEMATCHER_H_
|
||
|
|
#define NT_TEST_MESSAGEMATCHER_H_
|
||
|
|
|
||
|
|
#include <memory>
|
||
|
|
#include <ostream>
|
||
|
|
|
||
|
|
#include "gmock/gmock.h"
|
||
|
|
|
||
|
|
#include "TestPrinters.h"
|
||
|
|
|
||
|
|
#include "Message.h"
|
||
|
|
|
||
|
|
namespace nt {
|
||
|
|
|
||
|
|
class MessageMatcher
|
||
|
|
: public ::testing::MatcherInterface<std::shared_ptr<Message>> {
|
||
|
|
public:
|
||
|
|
MessageMatcher(std::shared_ptr<Message> goodmsg_) : goodmsg(goodmsg_) {}
|
||
|
|
|
||
|
|
bool MatchAndExplain(std::shared_ptr<Message> msg,
|
||
|
|
::testing::MatchResultListener* listener) const override;
|
||
|
|
void DescribeTo(::std::ostream* os) const override;
|
||
|
|
void DescribeNegationTo(::std::ostream* os) const override;
|
||
|
|
|
||
|
|
private:
|
||
|
|
std::shared_ptr<Message> goodmsg;
|
||
|
|
};
|
||
|
|
|
||
|
|
inline ::testing::Matcher<std::shared_ptr<Message>> MessageEq(
|
||
|
|
std::shared_ptr<Message> goodmsg) {
|
||
|
|
return ::testing::MakeMatcher(new MessageMatcher(goodmsg));
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace nt
|
||
|
|
|
||
|
|
#endif // NT_TEST_MESSAGEMATCHER_H_
|