PrintTo functions for google test and valgrind

This commit is contained in:
Matthew Barr
2016-03-08 14:53:03 +11:00
parent 4a482b07ea
commit e10d2eb269
3 changed files with 22 additions and 0 deletions

View File

@@ -103,3 +103,9 @@ TEST_P(NFAPureRepeatTest, Check) {
ASSERT_EQ(t.minBound, repeat.bounds.min);
ASSERT_EQ(t.maxBound, repeat.bounds.max);
}
// for google test
void PrintTo(const PureRepeatTest &p, ::std::ostream *os) {
*os << "PureRepeatTest: " << p.pattern
<< "{" << p.minBound << ',' << p.maxBound << '}';
}