Searched defs:testing (Results 401 - 425 of 467) sorted by relevance

<<111213141516171819

/external/chromium_org/testing/gtest/src/
H A Dgtest-port.cc74 namespace testing { namespace
1057 ::std::vector<testing::internal::string> g_argvs;
1059 static const ::std::vector<testing::internal::string>* g_injected_test_argvs =
1062 void SetInjectableArgvs(const ::std::vector<testing::internal::string>* argvs) {
1068 const ::std::vector<testing::internal::string>& GetInjectableArgvs() {
1184 } // namespace testing
H A Dgtest-death-test.cc78 namespace testing { namespace
274 if (!::testing::internal::IsTrue(expression)) { \
277 + ::testing::internal::StreamableToString(__LINE__) + ": " \
280 } while (::testing::internal::AlwaysFalse())
298 + ::testing::internal::StreamableToString(__LINE__) + ": " \
301 } while (::testing::internal::AlwaysFalse())
399 // The textual content of the code this object is testing. This class
875 static ::std::vector<testing::internal::string>
877 ::std::vector<testing::internal::string> args = GetInjectableArgvs();
1214 while (::testing
[all...]
H A Dgtest-internal-inl.h30 // Utility functions and classes used by the Google C++ testing framework.
73 namespace testing { namespace
85 // library. This is solely for testing GetTestTypeId().
815 friend class ::testing::UnitTest;
1018 // Google Test user but are required for testing. This class allow our tests
1021 // This class is supplied only for the purpose of testing Google Test's own
1035 static const std::vector<testing::TestPartResult>& test_part_results(
1190 } // namespace testing
/external/chromium_org/testing/gtest/test/
H A Dgtest-death-test_test.cc38 using testing::internal::AlwaysFalse;
39 using testing::internal::AlwaysTrue;
69 namespace posix = ::testing::internal::posix;
71 using testing::Message;
72 using testing::internal::DeathTest;
73 using testing::internal::DeathTestFactory;
74 using testing::internal::FilePath;
75 using testing::internal::GetLastErrnoDescription;
76 using testing::internal::GetUnitTestImpl;
77 using testing
80 namespace testing { namespace
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-internal.h70 // Google Test defines the testing::Message class to allow construction of
72 // streamable to std::ostream can be streamed to a testing::Message.
83 // namespace, but not other namespaces, including the testing
88 // testing::Message must access the custom << operator from the global
103 namespace testing { namespace
162 (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1)
500 // Returns the type ID of ::testing::Test. Always call this instead
501 // of GetTypeId< ::testing::Test>() to get the type ID of
502 // ::testing::Test, as the latter may give the wrong result due to a
787 typename ::testing
[all...]
H A Dgtest-type-util.h58 namespace testing { namespace
3328 } // namespace testing
H A Dgtest-port.h247 // Brings in definitions for functions used in the testing::internal::posix
672 namespace testing { namespace
700 typedef ::testing::internal::CompileAssert<(bool(expr))> \
924 ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \
946 if (::testing::internal::IsTrue(condition)) \
1013 ::testing::internal::ImplicitCast_<From*>(to);
1069 // testing Google Test's own constructs. Don't use it in user tests,
1083 // This class is only for testing Google Test's own constructs. Do not
1129 // Helper class for testing Googl
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dtestutils.h14 // Utilities for testing rtc infrastructure in unittests
37 namespace testing { namespace
271 // Creates a simulated client for testing. Works on real and virtual networks.
378 // Creates a simulated server for testing. Works on real and virtual networks.
524 EXPECT_PRED_FORMAT4(::testing::CmpHelperMemEq, expected, expected_length, \
528 ASSERT_PRED_FORMAT4(::testing::CmpHelperMemEq, expected, expected_length, \
532 EXPECT_PRED_FORMAT3(::testing::CmpHelperFileEq, expected, expected_length, \
536 ASSERT_PRED_FORMAT3(::testing::CmpHelperFileEq, expected, expected_length, \
588 if (!testing::IsScreencastingAvailable()) { \
627 } // namespace testing
[all...]
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_framework.cc18 namespace testing { namespace in namespace:webrtc
703 } // namespace testing
H A Dbwe_test_framework.h31 namespace testing { namespace in namespace:webrtc
461 } // namespace testing
/external/gtest/include/gtest/internal/
H A Dgtest-internal.h79 namespace testing { namespace
133 (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1)
146 // std::runtime_error inherits from std::exception, many testing
425 // Returns the type ID of ::testing::Test. Always call this instead
426 // of GetTypeId< ::testing::Test>() to get the type ID of
427 // ::testing::Test, as the latter may give the wrong result due to a
713 typename ::testing::internal::RemoveReference<T>::type
744 typename ::testing::internal::RemoveConst<T>::type
761 typename ::testing::internal::AddReference<T>::type
1022 } // namespace testing
[all...]
H A Dgtest-type-util.h57 namespace testing { namespace
3329 } // namespace testing
/external/gtest/test/
H A Dgtest-death-test_test.cc38 using testing::internal::AlwaysFalse;
39 using testing::internal::AlwaysTrue;
69 namespace posix = ::testing::internal::posix;
71 using testing::Message;
72 using testing::internal::DeathTest;
73 using testing::internal::DeathTestFactory;
74 using testing::internal::FilePath;
75 using testing::internal::GetLastErrnoDescription;
76 using testing::internal::GetUnitTestImpl;
77 using testing
80 namespace testing { namespace
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h74 // Google Test defines the testing::Message class to allow construction of
76 // streamable to std::ostream can be streamed to a testing::Message.
87 // namespace, but not other namespaces, including the testing
92 // testing::Message must access the custom << operator from the global
132 namespace testing { namespace
191 (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1)
529 // Returns the type ID of ::testing::Test. Always call this instead
530 // of GetTypeId< ::testing::Test>() to get the type ID of
531 // ::testing::Test, as the latter may give the wrong result due to a
816 typename ::testing
[all...]
H A Dgtest-type-util.h58 namespace testing { namespace
3328 } // namespace testing
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-internal-inl.h30 // Utility functions and classes used by the Google C++ testing framework.
68 namespace testing { namespace
80 // library. This is solely for testing GetTestTypeId().
787 friend class ::testing::UnitTest;
1012 // Google Test user but are required for testing. This class allow our tests
1015 // This class is supplied only for the purpose of testing Google Test's own
1028 static const std::vector<testing::TestPartResult>& test_part_results(
1035 } // namespace testing
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-internal.h70 // Google Test defines the testing::Message class to allow construction of
72 // streamable to std::ostream can be streamed to a testing::Message.
83 // namespace, but not other namespaces, including the testing
88 // testing::Message must access the custom << operator from the global
103 namespace testing { namespace
162 (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1)
500 // Returns the type ID of ::testing::Test. Always call this instead
501 // of GetTypeId< ::testing::Test>() to get the type ID of
502 // ::testing::Test, as the latter may give the wrong result due to a
787 typename ::testing
[all...]
H A Dgtest-type-util.h58 namespace testing { namespace
3328 } // namespace testing
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h562 namespace testing { namespace
718 ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \
829 // The testing::internal::posix namespace holds wrappers for common
1044 if (::testing::internal::IsTrue(condition)) \
1055 extern ::testing::internal::Int32 GTEST_FLAG(name)
1057 extern ::testing::internal::String GTEST_FLAG(name)
1063 ::testing::internal::Int32 GTEST_FLAG(name) = (default_val)
1065 ::testing::internal::String GTEST_FLAG(name) = (default_val)
1082 } // namespace testing
[all...]
H A Dgtest-type-util.h58 namespace testing { namespace
3317 } // namespace testing
/external/protobuf/gtest/src/
H A Dgtest-death-test.cc69 namespace testing { namespace
223 if (!::testing::internal::IsTrue(expression)) { \
224 DeathTestAbort(::testing::internal::String::Format( \
228 } while (::testing::internal::AlwaysFalse())
244 DeathTestAbort(::testing::internal::String::Format( \
248 } while (::testing::internal::AlwaysFalse())
346 // The textual content of the code this object is testing. This class
1046 while (::testing::internal::AlwaysTrue()) {
1174 } // namespace testing
/external/protobuf/gtest/test/
H A Dgtest-death-test_test.cc38 using testing::internal::AlwaysFalse;
39 using testing::internal::AlwaysTrue;
66 namespace posix = ::testing::internal::posix;
68 using testing::Message;
69 using testing::internal::DeathTest;
70 using testing::internal::DeathTestFactory;
71 using testing::internal::FilePath;
72 using testing::internal::GetLastErrnoDescription;
73 using testing::internal::GetUnitTestImpl;
74 using testing
77 namespace testing { namespace
[all...]
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest.h83 namespace testing { namespace
192 // testing::AssertionResult IsEven(int n) {
194 // return testing::AssertionSuccess();
196 // return testing::AssertionFailure() << n << " is odd";
219 // testing::AssertionResult IsEven(int n) {
221 // return testing::AssertionSuccess() << n << " is even";
223 // return testing::AssertionFailure() << n << " is odd";
243 // testing::AssertionResult IsEven(const char* expr, int n) {
245 // return testing::AssertionSuccess();
247 // return testing
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
H A Dgtest.h82 namespace testing { namespace
201 // testing::AssertionResult IsEven(int n) {
203 // return testing::AssertionSuccess();
205 // return testing::AssertionFailure() << n << " is odd";
228 // testing::AssertionResult IsEven(int n) {
230 // return testing::AssertionSuccess() << n << " is even";
232 // return testing::AssertionFailure() << n << " is odd";
252 // testing::AssertionResult IsEven(const char* expr, int n) {
254 // return testing::AssertionSuccess();
256 // return testing
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-death-test.cc69 namespace testing { namespace
236 if (!::testing::internal::IsTrue(expression)) { \
237 DeathTestAbort(::testing::internal::String::Format( \
241 } while (::testing::internal::AlwaysFalse())
257 DeathTestAbort(::testing::internal::String::Format( \
261 } while (::testing::internal::AlwaysFalse())
359 // The textual content of the code this object is testing. This class
1102 while (::testing::internal::AlwaysTrue()) {
1234 } // namespace testing

Completed in 567 milliseconds

<<111213141516171819