HomeSort by relevance Sort by last modified time
    Searched defs:testing (Results 1 - 25 of 35) sorted by null

1 2

  /external/gtest/test/
gtest_color_test_.cc 32 // A helper program for testing how Google Test determines whether to use
40 namespace testing { namespace
44 } // namespace testing
46 using testing::internal::ShouldUseColor;
56 testing::InitGoogleTest(&argc, argv);
gtest_env_var_test_.cc 32 // A helper program for testing that Google Test parses the environment
45 namespace testing { namespace
114 } // namespace testing
117 testing::InitGoogleTest(&argc, argv);
124 testing::PrintFlag(argv[1]);
gtest-port_test.cc 47 namespace testing { namespace
99 ::testing::ExitedWithCode(0), "Success");
107 class RETest : public ::testing::Test {};
111 typedef testing::Types<
645 } // namespace testing
gtest-options_test.cc 58 namespace testing { namespace
67 // Testing UnitTestOptions::GetOutputFormat/GetOutputFile.
275 } // namespace testing
gtest_stress_test.cc 45 namespace testing { namespace
102 // is for testing whether Google Test can handle failed assertions in a
146 } // namespace testing
149 testing::InitGoogleTest(&argc, argv);
gtest_environment_test.cc 38 namespace testing { namespace
48 // For testing using global test environments.
49 class MyEnvironment : public testing::Environment {
132 testing::InitGoogleTest(&argc, argv);
137 Check(testing::AddGlobalTestEnvironment(env) == env,
175 testing::GTEST_FLAG(filter) = "-*";
gtest_repeat_test.cc 47 namespace testing { namespace
53 } // namespace testing
55 using testing::GTEST_FLAG(death_test_style);
56 using testing::GTEST_FLAG(filter);
57 using testing::GTEST_FLAG(repeat);
61 // We need this when we are testing Google Test itself and therefore
83 class MyEnvironment : public testing::Environment {
129 class MyParamTest : public testing::TestWithParam<int> {};
139 testing::Range(0, kNumberOfParamTests));
232 testing::InitGoogleTest(&argc, argv)
    [all...]
gtest-filepath_test.cc 59 namespace testing { namespace
612 } // namespace testing
  /external/gtest/include/gtest/
gtest-param-test.h 35 // in Google C++ Testing Framework (Google Test)
51 // class. It must be derived from testing::TestWithParam<T>, where T is
53 // from testing::Test. T can be any copyable type. If it's a raw pointer,
56 class FooTest : public ::testing::TestWithParam<const char*> {
79 // are all in the testing namespace:
160 namespace testing { namespace
    [all...]
gtest-death-test.h 32 // The Google C++ Testing Framework (Google Test)
43 namespace testing { namespace
81 // ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting");
169 ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex)
174 EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex)
200 // The death testing framework causes this to have interesting semantics,
260 } // namespace testing
gtest-message.h 32 // The Google C++ Testing Framework (Google Test)
52 namespace testing { namespace
66 // testing::Message foo;
222 } // namespace testing
gtest-spi.h 32 // Utilities for testing Google Test itself and code that uses Google Test
40 namespace testing { namespace
113 } // namespace testing
115 // A set of macros for testing Google Test assertions or code that's expected
144 ::testing::TestPartResultArray gtest_failures;\
145 ::testing::internal::SingleFailureChecker gtest_checker(\
146 &gtest_failures, ::testing::TPRT_FATAL_FAILURE, (substr));\
148 ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\
149 ::testing::ScopedFakeTestPartResultReporter:: \
161 ::testing::TestPartResultArray gtest_failures;
    [all...]
gtest-test-part.h 40 namespace testing { namespace
177 } // namespace testing
  /external/gtest/include/gtest/internal/
gtest-filepath.h 45 namespace testing { namespace
199 } // namespace testing
gtest-string.h 32 // The Google C++ Testing Framework (Google Test)
51 namespace testing { namespace
333 } // namespace testing
gtest-linked_ptr.h 76 namespace testing { namespace
104 // contention in production code, but is acceptable in a testing
240 } // namespace testing
gtest-death-test-internal.h 32 // The Google C++ Testing Framework (Google Test)
46 namespace testing { namespace
137 // Factory interface for death tests. May be mocked out for testing.
161 const ::testing::internal::RE& gtest_regex = (regex); \
162 ::testing::internal::DeathTest* gtest_dt; \
163 if (!::testing::internal::DeathTest::Create(#statement, &gtest_regex, \
168 ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \
171 case ::testing::internal::DeathTest::OVERSEE_TEST: \
176 case ::testing::internal::DeathTest::EXECUTE_TEST: {
    [all...]
gtest-internal.h 32 // The Google C++ Testing Framework (Google Test)
70 // 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
100 namespace testing { namespace
165 (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1)
517 // Returns the type ID of ::testing::Test. Always call this instead
518 // of GetTypeId< ::testing::Test>() to get the type ID of
519 // ::testing::Test, as the latter may give the wrong result due to
    [all...]
  /external/gtest/src/
gtest-typed-test.cc 35 namespace testing { namespace
98 } // namespace testing
gtest-test-part.cc 32 // The Google C++ Testing Framework (Google Test)
45 namespace testing { namespace
124 } // namespace testing
gtest-filepath.cc 66 namespace testing { namespace
343 } // namespace testing
gtest-port.cc 66 namespace testing { namespace
653 } // namespace testing
  /packages/apps/Music/tests/src/com/android/music/stress/
AlbumsPlaybackStress.java 36 private String[] testing; field in class:AlbumsPlaybackStress
  /external/iptables/
ip6tables-restore.c 113 int in_table = 0, testing = 0; local
139 testing = 1;
180 if (!testing) {
184 DEBUGP("Not calling commit, testing\n");
iptables-restore.c 116 int in_table = 0, testing = 0; local
142 testing = 1;
183 if (!testing) {
187 DEBUGP("Not calling commit, testing\n");

Completed in 890 milliseconds

1 2