Searched refs:testing (Results 1 - 25 of 224) sorted by relevance

123456789

/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/
H A Dgtest-spi.h32 // 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::TestPartResult::kFatalFailure, (substr));\
148 ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\
149 ::testing::ScopedFakeTestPartResultReporter:: \
153 } while (::testing
[all...]
H A Dgtest-death-test.h43 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)
203 // The death testing framework causes this to have interesting semantics,
248 do { statement; } while (::testing::internal::AlwaysFalse())
251 do { statement; } while (::testing::internal::AlwaysFalse())
281 } // namespace testing
H A Dgtest-typed-test.h44 // by a type. Remember to derive it from testing::Test.
46 class FooTest : public testing::Test {
57 typedef testing::Types<char, int, unsigned int> MyTypes;
104 // by a type. Remember to derive it from testing::Test.
106 class FooTest : public testing::Test {
140 typedef testing::Types<char, int, unsigned int> MyTypes;
166 typedef ::testing::internal::TypeList< Types >::type \
179 ::testing::internal::TypeParameterizedTest< \
181 ::testing::internal::TemplateSel< \
220 static ::testing
[all...]
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...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/efl/tests/UnitTestUtils/
H A DEWK2UnitTestMain.cpp32 ::testing::InitGoogleTest(&argc, argv);
35 testing::AddGlobalTestEnvironment(environment);
H A DEWK2UnitTestEnvironment.h27 class EWK2UnitTestEnvironment : public ::testing::Environment {
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h44 namespace testing { namespace
139 // Factory interface for death tests. May be mocked out for testing.
169 ::testing::internal::FormatFileLocation(__FILE__, __LINE__).c_str(), \
172 death_test->Abort(::testing::internal::DeathTest::TEST_THREW_EXCEPTION); \
174 death_test->Abort(::testing::internal::DeathTest::TEST_THREW_EXCEPTION); \
187 if (::testing::internal::AlwaysTrue()) { \
188 const ::testing::internal::RE& gtest_regex = (regex); \
189 ::testing::internal::DeathTest* gtest_dt; \
190 if (!::testing::internal::DeathTest::Create(#statement, &gtest_regex, \
195 ::testing
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/unittests/ADT/
H A DDenseSetTest.cpp18 class DenseSetTest : public testing::Test {
/macosx-10.10.1/remote_cmds-47/timed.tproj/timedc.tproj/
H A Dextern.h53 void testing(int, char *[]);
H A Dcmdtab.c55 { "election", testinghelp, testing, 1 },
/macosx-10.10.1/dyld-353.2.1/unit-tests/
H A Dbuild-iPhoneOS-unit-tests12 rm -rf /var/root/testing
13 mkdir /var/root/testing
16 echo "#!/bin/sh" > /var/root/testing/run-all-tests
17 chmod +x /var/root/testing/run-all-tests
25 cp -r ${TEST_CASE_DIR}/../../unit-tests /var/root/testing/unit-tests-${arch}-${os}
28 cd /var/root/testing/unit-tests-${arch}-${os}/test-cases
31 echo "cd /var/root/testing/unit-tests-${arch}-${os}" >> /var/root/testing/run-all-tests
32 echo "echo \" * * * Running all unit tests for ${arch} iPhoneOS ${os} * * *\"" >> /var/root/testing/run-all-tests
33 echo "bin/make-recursive.pl OS_NAME=iPhoneOS check | bin/result-filter.pl" >> /var/root/testing/ru
[all...]
H A Dbuild-and-run-iPhoneOS-unit-tests8 rsync -a /tmp/unpack-and-run-all-tests /tmp/dyld-testing.cpgz rsync://root@localhost:10873/root/tmp
/macosx-10.10.1/expat-12/expat/conftools/
H A Dget-version.sh39 case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/support/devel/sak/validate/
H A Dtestsuites.tcl110 variable testing
118 foreach p $testing { +claim $p }
147 testing unknown useLocal useLocalKeep useAccel
187 proc ::sak::validate::testsuites::Process/testing {ip script} {
188 variable testing {}
194 variable testing
195 lappend testing $p
200 variable testing
201 lappend testing $p
206 variable testing
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/support/devel/sak/validate/
H A Dtestsuites.tcl110 variable testing
118 foreach p $testing { +claim $p }
147 testing unknown useLocal useLocalKeep useAccel
187 proc ::sak::validate::testsuites::Process/testing {ip script} {
188 variable testing {}
194 variable testing
195 lappend testing $p
200 variable testing
201 lappend testing $p
206 variable testing
[all...]
/macosx-10.10.1/CPANInternal-159.1/Pod-ProjectDocs-0.40/t/sample/lib/Sample/
H A DProject.pm9 Sample::Project - Sample project for testing Pod::ProjectDocs
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/UnitTestMain/
H A DTestMain.cpp24 testing::InitGoogleTest(&argc, argv);
28 // testing impossible.
/macosx-10.10.1/llvmCore-3425.0.34/unittests/ExecutionEngine/JIT/
H A DIntelJITEventListenerTest.cpp62 // for testing, pretend we have an Intel Parallel Amplifier XE 2011
112 testing::Environment* const jit_env =
113 testing::AddGlobalTestEnvironment(new JITEnvironment);
/macosx-10.10.1/vim-55/runtime/compiler/
H A Dpyunit.vim2 " Compiler: Unit testing tool for Python
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/importExport/
H A DimportExportPkcs885 ### RSA testing
91 echo ...RSA key testing, openssl generated
110 echo ...testing PKCS5 v1.5 PBE with RSA keys
129 echo ...testing PKCS5 v2.0 PBE with RSA keys
143 echo ...testing PKCS12 PBE with RSA keys
162 echo ...testing PKCS8 import with DSA keys
183 echo ...testing PKCS8 Export of RSA private key
191 echo ...testing PKCS8 Export of DSA private key
/macosx-10.10.1/apr-32/apr/apr/test/
H A Dteststr.c100 char *testing = apr_palloc(p, 10); local
102 testing[0] = 't';
103 testing[1] = 'e';
104 testing[2] = 's';
105 testing[3] = 't';
106 testing[4] = 'i';
107 testing[5] = 'n';
108 testing[6] = 'g';
111 apr_snprintf(buff, sizeof(buff), "%.*s", 7, testing);
112 ABTS_STR_NEQUAL(tc, buff, testing,
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/incrtcl/incrTcl/itcl/tests/
H A Dchain.test124 test_chain_d::tell "testing 1 2 3"
126 } {{d::tell testing 1 2 3} {c::tell testing 1 2 3} {a::tell testing 1 2 3}}
130 test_chain_c::tell "testing 1 2 3"
132 } {{c::tell testing 1 2 3} {a::tell testing 1 2 3}}
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/sslScripts/
H A DmakeLocalCert7 echo === Creating certs and keychains for SSL testing ===
71 echo === Finished creating certs and keychains for SSL testing ===
/macosx-10.10.1/ruby-106/ruby/test/rubygems/
H A Dsimple_gem.rb28 name: testing
33 summary: This exercise the gem testing stuff.
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/anchorTest/
H A DanchorSourceTest56 echo testing $certFile....

Completed in 290 milliseconds

123456789