Lines Matching full:reported
51 inline bool compare (const T& min, const T& reported) { return min <= reported; }
122 bool compare<Boolean> (const Boolean& min, const Boolean& reported)
124 return !min.value || (min.value && reported.value);
128 bool compare<NegInt> (const NegInt& min, const NegInt& reported)
131 return reported.value <= min.value;
135 bool compare<FloatRange> (const FloatRange& min, const FloatRange& reported)
137 return reported.min <= min.min && min.max <= reported.max;
164 m_testCtx.getLog() << TestLog::Message << "Reported: " << value << TestLog::EndMessage;
168 m_testCtx.getLog() << TestLog::Message << "FAIL: reported value is less than minimum required value!" << TestLog::EndMessage;