You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm aware of the limitations in using rel_matcher_t for testing limits on double types, but I want to do it anyway. While attempting this, I noticed that the Field::extract(std::data(msg)) failed to extract the double from its field (field_matchers.hpp:189) properly. By changing the line to: msg.get(Field{}), the extraction was successful, and I could use rel_matcher_t for valid range checking on various double message fields (at least for my initial development). This extraction failure could be the intended behavior, forcing the use of a proper matcher that uses a small delta. Otherwise, I'm finding the library most useful. Thank you!