Vowpal Wabbit
ut_util.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "gtest/gtest.h"
4 #include "gmock/gmock.h"
5 
6 MATCHER_P(FloatNearPointwise, tol, "Out of range")
7 {
8  return (std::get<0>(arg) > std::get<1>(arg) - tol && std::get<0>(arg) < std::get<1>(arg) + tol);
9 }
MATCHER_P(FloatNearPointwise, tol, "Out of range")
Definition: ut_util.h:6