Lines Matching defs:it
39 // Do not move it after other #includes.
71 // implementation. It must come before gtest-internal-inl.h is
158 // that are needed to test it.
376 // Verifies that GetTestTypeId() returns the same value, no matter it
377 // is called from inside Google Test or outside of it.
451 // ...Unless it's MSVC, whose standard library's _putenv doesn't
1019 // C++Builder's preprocessor is buggy; it fails to expand macros that
1207 // function even when the statement in it contains ASSERT_*.
1370 // state, in particular the TestPartResult vector it holds.
1372 // We cast it to a non-const object s.t. it can be modified (yes,
1628 // ensure that the string remains valid as long as it might be needed.
1633 // previous string (if present) until after it's replaced.
1696 // environment variable when it represents a valid decimal integer in
1933 // When a property using a reserved key is supplied to this function, it
1966 // functions correcly. Creating a separate instance of UnitTest ensures it
2135 // explanation why it succeeds. Needed for testing that
3202 // below. It's public to work around C++Builder's bug with scoping local
3208 // This helper function is needed by the FailedASSERT_NE test below. It's
3238 // Tests that when ASSERT_STREQ fails, it evaluates its arguments
3261 // Tests that when ASSERT_NE fails, it evaluates its arguments exactly
3334 }), "it throws");
3345 EXPECT_NONFATAL_FAILURE(EXPECT_ANY_THROW(a_++), "it doesn't");
3400 EXPECT_PRED_FORMAT2(testing::IsSubstring, "it does",
3419 EXPECT_PRED_FORMAT2(testing::IsSubstring, "it does",
3673 " Actual: it throws a different type.");
3679 " Actual: it throws nothing.");
3687 "\n Actual: it throws.");
3696 " Actual: it doesn't.");
3967 "It's a compilation test only.";
4028 << "It's a compilation test only.";
4413 "type bool.\n Actual: it throws a different type.");
4417 " Actual: it throws nothing.");
4425 "exception.\n Actual: it throws.");
4434 " Actual: it doesn't.");
4891 // This class has a private member we want to test. We will test it
4966 // Tests that the copy constructor works when it is NOT optimized away by
5508 // help message for the flags it recognizes.
6317 // No tests are based on this fixture; the test "passes" if it compiles
6525 // On Windows, we ignore the TERM variable as it's usually not set.
6725 // Tests that the TestEventListeners destructor deletes all the listeners it
6852 // the following calls release it, and we need to delete it before the
6910 // Replacing default_result_printer with something else should remove it
6911 // from the list and destroy it.
6930 // the following calls release it, and we need to delete it before the
6969 // Replacing default_xml_generator with something else should remove it
6970 // from the list and destroy it.
6989 // the following calls release it, and we need to delete it before the
7073 // proto2::Message or a sub-class of it.
7080 // ProtocolMessage nor a sub-class of it.
7364 NativeArray<int>::const_iterator it = na.begin();
7365 EXPECT_EQ(0, *it);
7366 ++it;
7367 EXPECT_EQ(1, *it);
7368 it++;
7369 EXPECT_EQ(2, *it);
7370 ++it;
7371 EXPECT_EQ(na.end(), it);