@@ -2054,6 +2054,114 @@ TEST(PairMatchBaseTest, WorksWithMoveOnly) {
2054
2054
EXPECT_TRUE (matcher.Matches (pointers));
2055
2055
}
2056
2056
2057
+ // Tests that IsNan() matches a NaN, with float.
2058
+ TEST (IsNan, FloatMatchesNan) {
2059
+ float quiet_nan = std::numeric_limits<float >::quiet_NaN ();
2060
+ float other_nan = std::nan (" 1" );
2061
+ float real_value = 1 .0f ;
2062
+
2063
+ Matcher<float > m = IsNan ();
2064
+ EXPECT_TRUE (m.Matches (quiet_nan));
2065
+ EXPECT_TRUE (m.Matches (other_nan));
2066
+ EXPECT_FALSE (m.Matches (real_value));
2067
+
2068
+ Matcher<float &> m_ref = IsNan ();
2069
+ EXPECT_TRUE (m_ref.Matches (quiet_nan));
2070
+ EXPECT_TRUE (m_ref.Matches (other_nan));
2071
+ EXPECT_FALSE (m_ref.Matches (real_value));
2072
+
2073
+ Matcher<const float &> m_cref = IsNan ();
2074
+ EXPECT_TRUE (m_cref.Matches (quiet_nan));
2075
+ EXPECT_TRUE (m_cref.Matches (other_nan));
2076
+ EXPECT_FALSE (m_cref.Matches (real_value));
2077
+ }
2078
+
2079
+ // Tests that IsNan() matches a NaN, with double.
2080
+ TEST (IsNan, DoubleMatchesNan) {
2081
+ double quiet_nan = std::numeric_limits<double >::quiet_NaN ();
2082
+ double other_nan = std::nan (" 1" );
2083
+ double real_value = 1.0 ;
2084
+
2085
+ Matcher<double > m = IsNan ();
2086
+ EXPECT_TRUE (m.Matches (quiet_nan));
2087
+ EXPECT_TRUE (m.Matches (other_nan));
2088
+ EXPECT_FALSE (m.Matches (real_value));
2089
+
2090
+ Matcher<double &> m_ref = IsNan ();
2091
+ EXPECT_TRUE (m_ref.Matches (quiet_nan));
2092
+ EXPECT_TRUE (m_ref.Matches (other_nan));
2093
+ EXPECT_FALSE (m_ref.Matches (real_value));
2094
+
2095
+ Matcher<const double &> m_cref = IsNan ();
2096
+ EXPECT_TRUE (m_cref.Matches (quiet_nan));
2097
+ EXPECT_TRUE (m_cref.Matches (other_nan));
2098
+ EXPECT_FALSE (m_cref.Matches (real_value));
2099
+ }
2100
+
2101
+ // Tests that IsNan() matches a NaN, with long double.
2102
+ TEST (IsNan, LongDoubleMatchesNan) {
2103
+ long double quiet_nan = std::numeric_limits<long double >::quiet_NaN ();
2104
+ long double other_nan = std::nan (" 1" );
2105
+ long double real_value = 1.0 ;
2106
+
2107
+ Matcher<long double > m = IsNan ();
2108
+ EXPECT_TRUE (m.Matches (quiet_nan));
2109
+ EXPECT_TRUE (m.Matches (other_nan));
2110
+ EXPECT_FALSE (m.Matches (real_value));
2111
+
2112
+ Matcher<long double &> m_ref = IsNan ();
2113
+ EXPECT_TRUE (m_ref.Matches (quiet_nan));
2114
+ EXPECT_TRUE (m_ref.Matches (other_nan));
2115
+ EXPECT_FALSE (m_ref.Matches (real_value));
2116
+
2117
+ Matcher<const long double &> m_cref = IsNan ();
2118
+ EXPECT_TRUE (m_cref.Matches (quiet_nan));
2119
+ EXPECT_TRUE (m_cref.Matches (other_nan));
2120
+ EXPECT_FALSE (m_cref.Matches (real_value));
2121
+ }
2122
+
2123
+ // Tests that IsNan() works with Not.
2124
+ TEST (IsNan, NotMatchesNan) {
2125
+ Matcher<float > mf = Not (IsNan ());
2126
+ EXPECT_FALSE (mf.Matches (std::numeric_limits<float >::quiet_NaN ()));
2127
+ EXPECT_FALSE (mf.Matches (std::nan (" 1" )));
2128
+ EXPECT_TRUE (mf.Matches (1.0 ));
2129
+
2130
+ Matcher<double > md = Not (IsNan ());
2131
+ EXPECT_FALSE (md.Matches (std::numeric_limits<double >::quiet_NaN ()));
2132
+ EXPECT_FALSE (md.Matches (std::nan (" 1" )));
2133
+ EXPECT_TRUE (md.Matches (1.0 ));
2134
+
2135
+ Matcher<long double > mld = Not (IsNan ());
2136
+ EXPECT_FALSE (mld.Matches (std::numeric_limits<long double >::quiet_NaN ()));
2137
+ EXPECT_FALSE (mld.Matches (std::nan (" 1" )));
2138
+ EXPECT_TRUE (mld.Matches (1.0 ));
2139
+ }
2140
+
2141
+ // Tests that IsNan() can describe itself.
2142
+ TEST (IsNan, CanDescribeSelf) {
2143
+ Matcher<float > mf = IsNan ();
2144
+ EXPECT_EQ (" is NaN" , Describe (mf));
2145
+
2146
+ Matcher<double > md = IsNan ();
2147
+ EXPECT_EQ (" is NaN" , Describe (md));
2148
+
2149
+ Matcher<long double > mld = IsNan ();
2150
+ EXPECT_EQ (" is NaN" , Describe (mld));
2151
+ }
2152
+
2153
+ // Tests that IsNan() can describe itself with Not.
2154
+ TEST (IsNan, CanDescribeSelfWithNot) {
2155
+ Matcher<float > mf = Not (IsNan ());
2156
+ EXPECT_EQ (" isn't NaN" , Describe (mf));
2157
+
2158
+ Matcher<double > md = Not (IsNan ());
2159
+ EXPECT_EQ (" isn't NaN" , Describe (md));
2160
+
2161
+ Matcher<long double > mld = Not (IsNan ());
2162
+ EXPECT_EQ (" isn't NaN" , Describe (mld));
2163
+ }
2164
+
2057
2165
// Tests that FloatEq() matches a 2-tuple where
2058
2166
// FloatEq(first field) matches the second field.
2059
2167
TEST (FloatEq2Test, MatchesEqualArguments) {
0 commit comments